Mercurial > public > sg101
annotate gpp/templates/weblinks/add_link.html @ 490:f0f3966ea44f
For #233, switched to asynchronous loading of the social media sharing javascript. Also switched to Facebook's javascript SDK instead of using an iframe for the like/share button.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 20 Oct 2011 00:36:37 +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> </td><td><input type="submit" value="Add Link" /> |
bgneal@310 | 11 <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 %} |