annotate gpp/templates/weblinks/add_link.html @ 486:7854d75427af

For #233, add a meta description field for news stories. This field will get put in the open graph meta tag for better descriptions when shared on social media sites.
author Brian Neal <bgneal@gmail.com>
date Tue, 18 Oct 2011 23:23:42 +0000
parents daa2916f5b34
children
rev   line source
gremmie@1 1 {% extends 'weblinks/base.html' %}
bgneal@310 2 {% load url from future %}
gremmie@1 3 {% block title %}Web Links: Add Link{% endblock %}
gremmie@1 4 {% block weblinks_content %}
gremmie@1 5 <h3>Add Link</h3>
gremmie@1 6 {% if add_form %}
bgneal@194 7 <form action="." method="post">{% csrf_token %}
gremmie@1 8 <table>
gremmie@1 9 {{ add_form.as_table }}
gremmie@1 10 <tr><td>&nbsp;</td><td><input type="submit" value="Add Link" />
bgneal@310 11 &nbsp;<a href="{% url 'weblinks-main' %}">Cancel</a>
bgneal@4 12 </td></tr>
gremmie@1 13 </table>
gremmie@1 14 </form>
gremmie@1 15 <br />
gremmie@1 16 {% else %}
gremmie@1 17 <p><strong>Thank you for submitting a link!</strong></p>
gremmie@1 18 <p>Your link has been submitted for review to the site staff.</p>
gremmie@1 19 {% endif %}
gremmie@1 20 {% endblock %}