annotate gpp/templates/weblinks/navigation.html @ 286:72fd300685d5

For #95. You can now make posts with no text in the body if you have attachments. And now if you create a new topic with an attachment, and the POST fails (say you forgot the topic title), we will now re-attach attachments. Also fixed a bug in the smiley code that would arise if it was asked to markup an empty string.
author Brian Neal <bgneal@gmail.com>
date Sat, 23 Oct 2010 20:19:46 +0000
parents 7e8d2dda99e3
children daa2916f5b34
rev   line source
bgneal@26 1 <div class="app-logo">
bgneal@26 2 <img src="{{ MEDIA_URL }}icons/weblinks-logo.jpg" alt="Links Logo" title="Links" />
bgneal@26 3 </div>
bgneal@21 4 <ul class="app-menu">
bgneal@242 5 <li><a href="{% url weblinks-main %}">Categories</a></li>
bgneal@242 6 <li><a href="{% url weblinks-new_links %}">New</a></li>
bgneal@242 7 <li><a href="{% url weblinks-popular_links %}">Popular</a></li>
bgneal@21 8 {% if user.is_authenticated %}
bgneal@242 9 <li><a href="{% url weblinks-add_link %}">Add Link</a></li>
bgneal@21 10 {% endif %}
bgneal@21 11 </ul>
bgneal@165 12 <center>
bgneal@242 13 <form action="{% url weblinks-random_link %}" method="post">{% csrf_token %}
bgneal@165 14 <input type="submit" value="Visit a Random Link" />
bgneal@165 15 </form>
bgneal@165 16 </center>