/blogmaker/blog/templates/blog/entry_detail.html

http://blogmaker.googlecode.com/ · HTML · 53 lines · 42 code · 11 blank · 0 comment · 0 complexity · cdb7cda5e84f9c56b3c607ca4495c517 MD5 · raw file

  1. {% comment %}
  2. Copyright (c) 2006-2007, PreFab Software Inc.
  3. Copyright (c) 2006, Andrew Gwozdziewycz <apgwoz@gmail.com>
  4. All rights reserved.
  5. {% endcomment %}
  6. {% extends "blog/blog_base.html" %}
  7. {% load blog_extras %}
  8. {% load comment_honeypot %}
  9. {% load comment_utils %}
  10. {% block "browsertitle" %}
  11. {{ object.headline|escape }}
  12. {% endblock %}
  13. {% block "contentbody" %}
  14. {% include "blog/includes/post.html" %}
  15. <div class="comments_trackbacks">
  16. {% get_public_comment_list for blog.entry object.id as comment_list %}
  17. {% if comment_list %}
  18. <div class="comments">
  19. <a name="comments" class='subtitle black'>Comments</a>
  20. {% for comment in comment_list %}
  21. {% include "comments/comment_display.html" %}
  22. {% endfor %}
  23. </div>
  24. {% endif %}
  25. {% get_public_trackback_list for blog.entry object.id as trackback_list %}
  26. {% if trackback_list %}
  27. <div class="trackbacks">
  28. <a name="trackbacks" class='subtitle black'>Trackbacks</a>
  29. {% for trackback in trackback_list %}
  30. {% include "comments/trackback_display.html" %}
  31. {% endfor %}
  32. </div>
  33. {% endif %}
  34. <div class="add_comment">
  35. <span class='subtitle'>Add Comment</span>
  36. {% comment_form for blog.entry object.id %}
  37. </div>
  38. </div>
  39. {% endblock %}
  40. {% block "taglist" %}
  41. {% include "blog/includes/popular_tags.html" %}
  42. {% endblock %}