annotate gpp/templates/shoutbox/shoutbox.html @ 270:85f81377bb5b

Fix #126. Incorporate the repoze timeago function as a new 'elapsed' template filter. This should save space in the shoutbox when displaying dates. Also used in the new posts forum template tag.
author Brian Neal <bgneal@gmail.com>
date Sun, 26 Sep 2010 17:27:08 +0000
parents 7ddd60164245
children 4557974db0e0
rev   line source
gremmie@1 1 {% extends 'side_block.html' %}
bgneal@270 2 {% load core_tags %}
gremmie@1 3 {% block block_title %}Shoutbox{% endblock %}
gremmie@1 4 {% block block_content %}
bgneal@12 5 <div id="shoutbox-shout-container">
gremmie@1 6 {% for shout in shouts %}
gremmie@1 7 <p>
gremmie@1 8 <span class="shoutbox-user">{{ shout.user.username }}:</span>
bgneal@270 9 <span class="shoutbox-shout">{{ shout.html|safe }}</span><br />
bgneal@270 10 <span class="shoutbox-date">{{ shout.shout_date|elapsed }}</span>
gremmie@1 11 </p>
gremmie@1 12 {% endfor %}
gremmie@1 13 </div>
bgneal@243 14 <center><a href="{% url shoutbox-history %}">Shout History</a></center>
gremmie@1 15 {% if user.is_authenticated %}
gremmie@1 16 <center>
bgneal@194 17 <div>
gremmie@1 18 <input type="text" maxlength="2048" size="13" name="msg" value="" id="shoutbox-smiley-input" />
gremmie@1 19 <br />
bgneal@12 20 <input id="shoutbox-submit" type="submit" value="Shout" />
bgneal@12 21 <input id="shoutbox-smilies" type="button" value="Smilies" />
bgneal@194 22 </div>
gremmie@1 23 <div id="shoutbox-smiley-frame" style="display:none;">
bgneal@12 24 <img id="shoutbox-busy-icon" src="{{ MEDIA_URL }}icons/ajax_busy.gif" alt="Please wait" />
gremmie@1 25 </div>
gremmie@1 26 </center>
gremmie@1 27 {% else %}
gremmie@1 28 <p>
gremmie@1 29 Please <a href="{% url accounts-login %}">login</a> or
gremmie@1 30 <a href="{% url accounts-register %}">register</a> to shout.
gremmie@1 31 </p>
gremmie@1 32 {% endif %}
gremmie@1 33 {% endblock %}