comparison gpp/templates/weblinks/add_link.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children 9a8801fa63d5
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'weblinks/base.html' %}
2 {% block title %}Web Links: Add Link{% endblock %}
3 {% block weblinks_content %}
4 <h3>Add Link</h3>
5 {% if add_form %}
6 <form action="." method="post">
7 <table>
8 {{ add_form.as_table }}
9 <tr><td>&nbsp;</td><td><input type="submit" value="Add Link" />
10 <input type="button" value="Cancel" onclick="history.back(); return true;" /></td></tr>
11 </table>
12 </form>
13 <br />
14 {% else %}
15 <p><strong>Thank you for submitting a link!</strong></p>
16 <p>Your link has been submitted for review to the site staff.</p>
17 {% endif %}
18 {% endblock %}