- Timestamp:
- 07/21/08 13:53:50 (20 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/media/PyLucid/internal_page/blog/display_blog.html
r1691 r1701 73 73 <fieldset class="comments"><legend>Leave a comment</legend> 74 74 <script type="text/javascript"> 75 document.write('<fo rm method="post" action=".">');75 document.write('<fo'+'rm met'+'hod="po'+'st" act'+'ion=".">'); 76 76 </script> 77 77 <ul id="input_fields"> 78 78 {% for field in add_comment_form %} 79 79 <li title="{{ field.help_text }}" class="{{ field.html_name }}"> 80 <label for="{{ field.auto_id }}">{{ field.label }} :</label>80 <label for="{{ field.auto_id }}">{{ field.label }}:</label> 81 81 {{ field }} 82 82 <span class="field_help_text">{{ field.help_text }}</span> … … 87 87 <noscript><h2 style="color:red;">JavaScript required!</h2></noscript> 88 88 <script type="text/javascript"> 89 document.write('<in put type="submit" value="{% trans 'submit' %}" />');90 document.write('</fo rm>');89 document.write('<in'+'put type="sub'+'mit" value="{% trans 'submit' %}" />'); 90 document.write('</fo'+'rm>'); 91 91 </script> 92 92 </fieldset> … … 96 96 {% endfor %} 97 97 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> 109 {% endfor %} 110 </ul> 111 </fieldset> 112 98 113 {% if back_url %}<p><a href="{{ back_url }}" class="action_link">Display all blog entries</a></p>{% endif %} 99 114 {% if create_url %}<p><a href="{{ create_url }}" class="action_link">create a new blog entry</a></p>{% endif %}