- Timestamp:
- 07/23/08 12:30:40 (20 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/media/PyLucid/internal_page/blog/display_blog.html
r1701 r1705 1 {% if back_url %}<p><a href="{{ back_url }}" class="action_link"> Display all blog entries</a></p>{% endif %}1 {% if back_url %}<p><a href="{{ back_url }}" class="action_link">« Display all blog entries</a></p>{% endif %} 2 2 {% if create_url %}<p><a href="{{ create_url }}" class="action_link">create a new blog entry</a></p>{% endif %} 3 3 … … 97 97 98 98 <fieldset class="feeds"><legend>{% trans 'available syndication feeds' %}</legend> 99 {% regroup feed_info|dictsort:"feed_type" by feed_type as feeds_grouped %} 100 <ul> 101 {% for feed in feeds_grouped %} 102 <li class="grouper"><strong>{{ feed.grouper }}:</strong> 103 <ul class="feed_type"> 104 {% for item in feed.list %} 105 <li><a href="{{ item.url }}">{{ item.title_info }}</a></li> 106 {% endfor %} 107 </ul> 108 </li> 99 <ul>{% trans 'normal feeds:' %} 100 {% for feed in feed_info %} 101 <li><a href="{{ feed.url }}">{{ feed.title_info }}</a></li> 102 {% endfor %} 103 </ul> 104 <ul>{% trans 'tag feeds:' %} 105 {% for feed in tag_feed_info %} 106 <li><a href="{{ feed.url }}">{{ feed.title_info }}</a></li> 109 107 {% endfor %} 110 108 </ul> 111 109 </fieldset> 112 110 113 {% if back_url %}<p><a href="{{ back_url }}" class="action_link"> Display all blog entries</a></p>{% endif %}111 {% if back_url %}<p><a href="{{ back_url }}" class="action_link">« Display all blog entries</a></p>{% endif %} 114 112 {% if create_url %}<p><a href="{{ create_url }}" class="action_link">create a new blog entry</a></p>{% endif %}