]> gitweb.fperrin.net Git - djsite.git/blobdiff - quotes/templates/quotes/display.html
Add first UT
[djsite.git] / quotes / templates / quotes / display.html
index 108dc92ba6a3662d01f02c57530d97be5898e971..1369e2ce96f2ac30abb2d9388aa564f587fe66cc 100644 (file)
 
   {% if quote.tags.all %}
     <p class="tags">
-      Tags: 
+      Tags:
       {% for tag in quote.tags.all %}
-        <a href="{% url 'quotes:tags' tag.id %}">{{ tag.tag }}</a>
+       <a href="{% url 'quotes:tags' tag.id %}" class="tag_link">
+         {{ tag.tag }}
+       </a>
       {% endfor %}
     </p>
   {% endif %}
+
+  <p class="permalink">
+    <a href="{% url 'quotes:onequote' quote.id %}">Permalink</a>
+  </p>
 </div>