pytask/templates/profile/browse_notifications.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 05 Feb 2011 03:24:52 +0530
changeset 559 96e8e65a3738
parent 435 1217d808d70f
permissions -rw-r--r--
Display Pynts on task/textbook description page. Also make some style fixes.

{% extends "base.html" %}

{% block content %}
  {% if not notifications %}
    You have no notifications.
  {% else %}

    Notifications: <br />
    {% for notification in notifications %}
      <a href="{% url view_notification notification.id %}">

        {% if not notification.is_read %}
          <b>
        {% endif %}
  
        {{ notification.subject }}
  
        {% if not notification.is_read %}
          </b>
        {% endif %}

      </a>
      <br />
    {% endfor %}

  {% endif %}
{% endblock %}