Changeset 748
- Timestamp:
- 05/07/07 18:41:34 (1 year ago)
- Files:
-
- cherokee-www/trunk/cherokee/blog/templates/blog/comment_list.html (modified) (2 diffs)
- cherokee-www/trunk/cherokee/blog/templates/blog/post_archive.html (modified) (2 diffs)
- cherokee-www/trunk/cherokee/media/js/jquery.compressed.js (copied) (copied from cherokee-www/trunk/cherokee/media/js/jquery.js)
- cherokee-www/trunk/cherokee/media/js/jquery.js (moved) (moved from cherokee-www/trunk/cherokee/media/js/jquery.uncompressed.js)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee-www/trunk/cherokee/blog/templates/blog/comment_list.html
r746 r748 1 {% load comments %}1 {% load i18n comments %} 2 2 {% get_free_comment_list for blog.post params.id as comment_list %} 3 3 {% if comment_list %} … … 7 7 <strong>{{ comment.person_name }}</strong> says: 8 8 <blockquote>{{ comment.comment }}</blockquote> 9 <p>{{ comment.submit_date|timesince }} ago</p>9 <p>{{ comment.submit_date|timesince }} {% trans "ago" %}</p> 10 10 </li> 11 11 {% endfor %} 12 12 </ul> 13 13 {% else %} 14 <p> No comments to display.</p>14 <p>{% trans "No comments to display." %}</p> 15 15 {% endif %} cherokee-www/trunk/cherokee/blog/templates/blog/post_archive.html
r746 r748 1 1 {% extends "base.html" %} 2 {% load text comments %}2 {% load i18n text comments %} 3 3 4 4 {% block extrahead %} … … 25 25 <ul class="post_info_line"> 26 26 <li><a href="#" onclick="show_comments(this, {{ post.id }}, '{{ comment_count }} comment{{ comment_count|pluralize }}', 'hide comment{{ comment_count|pluralize }}'); return false;">{{ comment_count }} comment{{ comment_count|pluralize }}</a></li> 27 <li><a href="#" onclick="show_add_comment({{ post.id }}); return false;"> say something</a></li>28 <li><a href="#" onclick="digg_this('{{ post_headline }}', '{{ post.get_absolute_url }}'); return false;" id="digg_this"> digg this</a></li>29 <li><a href="http://del.icio.us/post" onclick="delicious_bookmark('{{ post.headline }}', '{{ post.get_absolute_url }}'); return false;" id="delicious"> save this</a></li>27 <li><a href="#" onclick="show_add_comment({{ post.id }}); return false;">{% trans "say something" %}</a></li> 28 <li><a href="#" onclick="digg_this('{{ post_headline }}', '{{ post.get_absolute_url }}'); return false;" id="digg_this">{% trans "digg this" %}</a></li> 29 <li><a href="http://del.icio.us/post" onclick="delicious_bookmark('{{ post.headline }}', '{{ post.get_absolute_url }}'); return false;" id="delicious">{% trans "save this" %}</a></li> 30 30 </ul> 31 31