view gpp/templates/weblinks/link.html @ 507:8631d32e6b16

Some users are still having problems with the pop-up login. I think they are actually getting 403s because of the CSRF protection. So I have modified the base template to always have a javascript variable called csrf_token available when they aren't logged in. The ajax_login.js script was then modified to send this value with the ajax post. Fingers crossed.
author Brian Neal <bgneal@gmail.com>
date Sun, 04 Dec 2011 03:05:21 +0000
parents 3c48a555298d
children
line wrap: on
line source
{% load url from future %}
{% load bio_tags %}
<dt>
<h4><a href="{{ link.url }}">{{ link.title }}</a></h4>
</dt>
<dd>
<p>{{ link.description }}</p>
<form action="{% url 'weblinks-visit' link.id %}" method="post">{% csrf_token %}
<table class="link-stats">
   <tr>
      <th>Added by:</th><td>{% profile_link link.user.username %}</td>
      <th>Category:</th><td><a href="{% url 'weblinks-view_links' slug=link.category.slug sort='date' %}">{{ link.category.title }}</a></td>
   </tr>
   <tr>
      <th>Date Added:</th><td>{{ link.date_added|date:"M d, Y" }}</td>
      <th>Hits:</th><td>{{ link.hits }}</td>
      <td>
         <a href="#" class="weblinks-broken" id="link-{{ link.id }}"><img src="{{ STATIC_URL }}icons/link_break.png" alt="Broken Link" title="Report this link as broken" /></a>
      </td>
   </tr>
   <tr><td><input type="submit" value="Visit Site" /></td></tr>
</table>
</form>
<br />
</dd>