view gpp/templates/weblinks/add_link.html @ 4:9a8801fa63d5

Got rid of the pseudo cancel buttons on various forms. Replaced them with cancel links.
author Brian Neal <bgneal@gmail.com>
date Sat, 11 Apr 2009 18:52:19 +0000
parents dbd703f7d63a
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 %}