annotate gpp/templates/shoutbox/shout.html @ 197:2baadae33f2e
Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author |
Brian Neal <bgneal@gmail.com> |
date |
Sat, 10 Apr 2010 04:32:24 +0000 |
parents |
e1d1a70d312d |
children |
4746df47a538 |
rev |
line source |
bgneal@12
|
1 <p style="display:none;">
|
bgneal@12
|
2 <span class="shoutbox-user">{{ shout.user.username }}:</span>
|
bgneal@151
|
3 <span class="shoutbox-shout">{{ shout.html|safe }}</span>
|
bgneal@12
|
4 <span class="shoutbox-date">{{ shout.shout_date|date:"D M d Y H:i:s" }}</span>
|
bgneal@12
|
5 </p>
|