changeset 343:cfad8d605cb8

Fixing #157; added goto the top of page intra-page links on forums and yahoo group templates.
author Brian Neal <bgneal@gmail.com>
date Sun, 27 Feb 2011 22:12:18 +0000
parents 8587c7a22094
children 7eed448b399c
files gpp/templates/forums/display_post.html gpp/templates/forums/navigation_tag.html gpp/templates/forums/topic.html gpp/templates/ygroup/thread.html static/css/base.css
diffstat 5 files changed, 11 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gpp/templates/forums/display_post.html	Sun Feb 27 01:58:49 2011 +0000
+++ b/gpp/templates/forums/display_post.html	Sun Feb 27 22:12:18 2011 +0000
@@ -47,6 +47,7 @@
       </div>
       {% endif %}
       <div class="forum-post-info-tools">
+      <a href="#top" class="quiet" title="Goto the top of the page">Top</a>
       {% if can_reply %}
          <a href="{% url 'forums-new_post' topic_id=post.topic.id %}?quote={{ post.id }}"><img src="{{ STATIC_URL }}icons/comment.png" alt="Reply with quote" title="Reply with quote" /></a>
       {% endif %}
--- a/gpp/templates/forums/navigation_tag.html	Sun Feb 27 01:58:49 2011 +0000
+++ b/gpp/templates/forums/navigation_tag.html	Sun Feb 27 22:12:18 2011 +0000
@@ -1,4 +1,5 @@
 {% load url from future %}
+<a class="intra" name="top"></a>
 <h2 class="forum-nav"><a href="{% url 'forums-index' %}">SurfGuitar101 Forums</a> &raquo;
 {% for nav_item in nav_list %}
    {% if not forloop.last %}
--- a/gpp/templates/forums/topic.html	Sun Feb 27 01:58:49 2011 +0000
+++ b/gpp/templates/forums/topic.html	Sun Feb 27 22:12:18 2011 +0000
@@ -96,5 +96,6 @@
 </fieldset>
 </form>
 {% endif %}
+<a href="#top" class="quiet" title="Goto top of the page">Top</a>
 </div>
 {% endblock %}
--- a/gpp/templates/ygroup/thread.html	Sun Feb 27 01:58:49 2011 +0000
+++ b/gpp/templates/ygroup/thread.html	Sun Feb 27 22:12:18 2011 +0000
@@ -5,6 +5,7 @@
 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" />
 {% endblock %}
 {% block content %}
+<a name="top" class="intra"></a>
 {% if thread.page == 1 %}
 <h2 class="forum-nav"><a href="{% url 'ygroup-thread_index' %}">Yahoo Group Archives</a> &raquo; </h2>
 {% else %}
@@ -21,7 +22,10 @@
    <dt><a name="p{{ post.id }}"></a>{{ post.poster }} - {{ post.creation_date|date:"d M Y H:i:s" }}
    <a href="{{ post.get_absolute_url }}" rel="nofollow">
       <img src="{{ STATIC_URL }}icons/link.png" alt="permalink" title="permalink" /></a></dt>
-   <dd>{{ post.msg|linebreaks }}</dd>
+   <dd>
+   {{ post.msg|linebreaks }}
+   <p><a href="#top" class="quiet" title="Goto top of page">Top</a></p>
+   </dd>
    {% endfor %}
 </dl>
 {% include "ygroup/pagination.html" %}
--- a/static/css/base.css	Sun Feb 27 01:58:49 2011 +0000
+++ b/static/css/base.css	Sun Feb 27 22:12:18 2011 +0000
@@ -405,3 +405,6 @@
    margin-top: 3px;
    margin-bottom: 3px;
 }
+a.intra {
+ text-decoration: none;
+}