Mercurial > public > sg101
view gpp/templates/shoutbox/view.html @ 481:9f888dbe61ce
Fixing #230; add a scrollbar to the PM popup dialog if necessary. This wasn't as easy as I thought. Had to wrap the PM text in a div with its styling (max-height and overflow). If I then resized the dialog, I'd get two scrollbars. So for now, made the dialog non-resizable.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 07 Oct 2011 02:11:33 +0000 |
parents | 88b2b9cb8c1f |
children | 3c48a555298d |
line wrap: on
line source
{% extends 'base.html' %} {% load avatar_tags %} {% load script_tags %} {% block custom_css %} <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/shoutbox_app.css" /> <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" /> {% endblock %} {% block custom_js %} {% script_tags "jquery-jeditable" %} <script type="text/javascript" src="{{ STATIC_URL }}js/shoutbox_app.js"></script> {% endblock %} {% block title %}Shout History{% endblock %} {% block content %} <h2>Shout History</h2> {% if page.object_list %} {% include 'core/pagination.html' %} <div class="shoutbox-history"> <table> {% for shout in page.object_list %} {% include "shoutbox/shout_detail.html" %} {% endfor %} </table> </div> {% include 'core/pagination.html' %} {% else %} <p>No shouts at this time.</p> {% endif %} {% endblock %}