Mercurial > public > sg101
view gpp/templates/weblinks/link.html @ 102:e67c4dd98db5
Forums: new topic form sprouts boolean fields for sticky and locking if the user has rights. Implemented the locked logic. Fixed a bug where topics where getting out of order (the view_count was bumping the update_date because of auto_now).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 16 Sep 2009 02:01:57 +0000 |
parents | 33f73b7bd305 |
children | 952e05cb3d80 |
line wrap: on
line source
<dt> <a href="{% url weblinks.views.visit link.id %}" target="_blank">{{ link.title }}</a> </dt> <dd> <p>{{ link.description }}</p> <table class="link-stats"> <tr> <th>Date:</th><td>{{ link.date_added|date:"M d, Y" }}</td> <th>Hits:</th><td>{{ link.hits }}</td> <td> <a href="{% url weblinks.views.report_link link.id %}"><img src="{{ MEDIA_URL }}icons/link_break.png" alt="Broken Link" title="Report broken link" /></a> </td> </tr> </table> <br /> </dd>