annotate gpp/templates/admin/gcalendar/event/change_list.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 5be072292e2d
children
rev   line source
bgneal@456 1 {% extends "admin/change_list.html" %}
bgneal@456 2 {% block object-tools %}
bgneal@456 3 {% if has_add_permission %}
bgneal@456 4 <ul class="object-tools"><li><a href="add/{% if is_popup %}?_popup=1{% endif %}" class="addlink">Add {{ name }}</a></li>
bgneal@456 5 <li><a href="google_sync/">Google Sync</a></li>
bgneal@456 6 </ul>
bgneal@456 7 {% endif %}
bgneal@456 8 {% endblock %}