view gpp/templates/messages/tabbed_base.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 d0f0800eef0c
children
line wrap: on
line source
{% extends 'base.html' %}
{% load url from future %}
{% load script_tags %}
{% block custom_css %}
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/messages.css" />
{% endblock %}
{% block custom_js %}
{% script_tags 'jquery-ui' %}
<script type="text/javascript">
//<![CDATA[
   var initialTab = {{ tab }};
   var username = "{{ request.user.username }}";
{% if receiver %}
   var receiver = "{{ receiver }}";
{% else %}
   var receiver = "";
{% endif %}
   var unreadMsgCount = {{ unread_count }};
//]]>
</script>
<script type="text/javascript" src="{{ STATIC_URL }}js/tabbed_messages.js"></script>
{% endblock %}
{% block content %}
<h2>Your Private Messages</h2>

<div id="tabs">
   <ul>
      <li><a href="{% url 'messages-inbox' %}">Inbox</a></li>
      <li><a href="{% url 'messages-compose' %}">Compose</a></li>
      <li><a href="{% url 'messages-outbox' %}">Outbox</a></li>
      <li><a href="{% url 'messages-trash' %}">Trash</a></li>
      <li><a href="{% url 'messages-options' %}">Options</a></li>
   </ul>
</div>

<div id="msgDialog"></div>
{% endblock %}