Changeset 364
- Timestamp:
- 07/29/10 09:36:40 (5 weeks ago)
- Location:
- Python/blog/trunk/blog/templates/blog/includes
- Files:
-
- 2 edited
-
entry_full.html (modified) (1 diff)
-
entry_summary.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Python/blog/trunk/blog/templates/blog/includes/entry_full.html
r331 r364 1 1 <div class="blog_entry{% if not entry.is_published %} draft{% endif %}"> 2 2 3 <h2 class="topic"> {{ entry.headline|safe }}{% if perms.blog.change_entry %}<span class="edit"><a href="{% url admin:blog_entry_change entry.id %}">Edit</a></span>{% endif %}3 <h2 class="topic"><a href="{{ entry.get_absolute_url }}">{{ entry.headline|safe }}</a> {% if perms.blog.change_entry %}<span class="edit"><a href="{% url admin:blog_entry_change entry.id %}">Edit</a></span>{% endif %} 4 4 </h2> 5 5 -
Python/blog/trunk/blog/templates/blog/includes/entry_summary.html
r331 r364 1 1 <div class="blog_entry{% if not entry.is_published %} draft{% endif %}"> 2 2 3 <h2 class="topic"> {{ entry.headline|safe }}{% if perms.blog.change_entry %}<span class="edit"><a href="{% url admin:blog_entry_change entry.id %}">Edit</a></span>{% endif %}3 <h2 class="topic"><a href="{{ entry.get_absolute_url }}">{{ entry.headline|safe }}</a> {% if perms.blog.change_entry %}<span class="edit"><a href="{% url admin:blog_entry_change entry.id %}">Edit</a></span>{% endif %} 4 4 </h2> 5 5
Note: See TracChangeset
for help on using the changeset viewer.