annotate gpp/templates/weblinks/link.html @ 209:0e7c7231dea9

Fix #75; weblinks should have an <a> tag for search engines.
author Brian Neal <bgneal@gmail.com>
date Wed, 05 May 2010 03:24:14 +0000
parents 6a5549c2efb5
children 7e8d2dda99e3
rev   line source
gremmie@1 1 <dt>
bgneal@209 2 <h4><a href="{{ link.url }}">{{ link.title }}</a></h4>
gremmie@1 3 </dt>
gremmie@1 4 <dd>
gremmie@1 5 <p>{{ link.description }}</p>
bgneal@194 6 <form action="{% url weblinks-visit link.id %}" method="post">{% csrf_token %}
gremmie@1 7 <table class="link-stats">
gremmie@1 8 <tr>
bgneal@209 9 <th>Added by:</th><td><a href="{% url bio-view_profile link.user.username %}">{{ link.user.username }}</a></td>
bgneal@209 10 </tr>
bgneal@209 11 <tr>
bgneal@165 12 <th>Date Added:</th><td>{{ link.date_added|date:"M d, Y" }}</td>
gremmie@1 13 <th>Hits:</th><td>{{ link.hits }}</td>
bgneal@3 14 <td>
bgneal@165 15 <a href="#" class="weblinks-broken" id="link-{{ link.id }}"><img src="{{ MEDIA_URL }}icons/link_break.png" alt="Broken Link" title="Report this link as broken" /></a>
bgneal@3 16 </td>
gremmie@1 17 </tr>
bgneal@165 18 <tr><td><input type="submit" value="Visit Site" /></td></tr>
gremmie@1 19 </table>
bgneal@165 20 </form>
gremmie@1 21 <br />
gremmie@1 22 </dd>