annotate gpp/templates/weblinks/add_link.html @ 492:3c48a555298d

Added a custom tag to display a link to a profile. Refactored the avatar tag to optionally display a profile link around the image. Removed the width and height attributes from the avatar image tag. I think this was causing disk hits whenever those properties were not cached. The avatar tag is now an inclusion tag.
author Brian Neal <bgneal@gmail.com>
date Sat, 22 Oct 2011 00:07:50 +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 %}