Author: jtauber
Date: Sat Sep 27 02:48:24 2008
New Revision: 941
Modified:
trunk/pinax/templates/zwitschern/base.html
trunk/pinax/templates/zwitschern/followers.html
trunk/pinax/templates/zwitschern/following.html
Log:
tweaking of follower/following templates
Modified: trunk/pinax/templates/zwitschern/base.html
==============================================================================
--- trunk/pinax/templates/zwitschern/base.html (original)
+++ trunk/pinax/templates/zwitschern/base.html Sat Sep 27 02:48:24 2008
@@ -8,7 +8,7 @@
<ul>
<li><a href="{% url tweets_you_follow %}">{% trans "Tweets You
Follow" %}</a></li>
<li><a href="{% url all_tweets %}">{% trans "All
Tweets" %}</a></li>
- <li><a href="{% url tweet_followers request.user %}">{%
trans "Followers" %}</a></li>
- <li><a href="{% url tweet_following request.user %}">{%
trans "Following" %}</a></li>
+ <li><a href="{% url tweet_followers request.user %}">{%
trans "Your Followers" %}</a></li>
+ <li><a href="{% url tweet_following request.user %}">{% trans "Who
You Are Following" %}</a></li>
</ul>
{% endblock %}
Modified: trunk/pinax/templates/zwitschern/followers.html
==============================================================================
--- trunk/pinax/templates/zwitschern/followers.html (original)
+++ trunk/pinax/templates/zwitschern/followers.html Sat Sep 27 02:48:24 2008
@@ -25,4 +25,6 @@
<p>{% trans 'No followers.' %}</p>
{% endif %}
+ {% url tweet_following other_user.username as tweet_following_url %}
+ <p>{% blocktrans %}Also see <a href="{{ tweet_following_url }}">who {{
other_user }} is following</a>.{% endblocktrans %}
{% endblock %}
Modified: trunk/pinax/templates/zwitschern/following.html
==============================================================================
--- trunk/pinax/templates/zwitschern/following.html (original)
+++ trunk/pinax/templates/zwitschern/following.html Sat Sep 27 02:48:24 2008
@@ -24,4 +24,6 @@
<p>{% trans 'Not following anyone.' %}</p>
{% endif %}
+ {% url tweet_followers other_user.username as tweet_followers_url %}
+ <p>{% blocktrans %}Also see <a href="{{ tweet_followers_url }}">who is
following</a> {{ other_user }}.{% endblocktrans %}
{% endblock %}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---