annotate gpp/templates/weblinks/add_link.html @ 505:a5d11471d031

Refactor the logic in the rate limiter decorator. Check to see if the request was ajax, as the ajax view always returns 200. Have to decode the JSON response to see if an error occurred or not.
author Brian Neal <bgneal@gmail.com>
date Sat, 03 Dec 2011 19:13:38 +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 %}