view gpp/templates/weblinks/add_link.html @ 20:c0d0779b266f

Created a template tag for the latest weblinks: latest_weblinks. This necessitated adding a get_absolute_url function for the Link model along with a new view for it.
author Brian Neal <bgneal@gmail.com>
date Sun, 19 Apr 2009 20:41:37 +0000
parents 9a8801fa63d5
children 6a5549c2efb5
line wrap: on
line source
{% extends 'weblinks/base.html' %}
{% block title %}Web Links: Add Link{% endblock %}
{% block weblinks_content %}
   <h3>Add Link</h3>
   {% if add_form %}
   <form action="." method="post">
   <table>
      {{ add_form.as_table }}
      <tr><td>&nbsp;</td><td><input type="submit" value="Add Link" />
         &nbsp;<a href="{% url weblinks-main %}">Cancel</a>
         </td></tr>
   </table>
   </form>
   <br />
   {% else %}
   <p><strong>Thank you for submitting a link!</strong></p>
   <p>Your link has been submitted for review to the site staff.</p>
   {% endif %}
{% endblock %}