annotate gpp/templates/weblinks/add_link.html @ 467:b910cc1460c8

Add the ability to conditionally add model instances to the search index on update. This is not perfect, as some instances should be deleted from the index if they are updated such that they should not be in the index anymore. Will think about and address that later.
author Brian Neal <bgneal@gmail.com>
date Sun, 24 Jul 2011 18:12:20 +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 %}