Author: leidel
Date: Sat Sep 27 08:26:22 2008
New Revision: 51

Modified:
     
trunk/friendsdev/friends/templates/notification/friends_accept_sent/teaser.html
     
trunk/friendsdev/friends/templates/notification/friends_invite_sent/teaser.html
     
trunk/friendsdev/friends/templates/notification/friends_otherconnect/teaser.html
    trunk/friendsdev/friends/templates/notification/join_accept/teaser.html

Log:
Removed use of captureas template tag in default notification templates

Modified:  
trunk/friendsdev/friends/templates/notification/friends_accept_sent/teaser.html
==============================================================================
---  
trunk/friendsdev/friends/templates/notification/friends_accept_sent/teaser.html 
 
(original)
+++  
trunk/friendsdev/friends/templates/notification/friends_accept_sent/teaser.html 
 
Sat Sep 27 08:26:22 2008
@@ -1,2 +1,2 @@
-{% load i18n captureas_tag %}{% captureas user_url %}{% url profile_detail  
username=invitation.from_user.username %}{% endcaptureas %}
+{% load i18n %}{% url profile_detail  
username=invitation.from_user.username as user_url %}
  {% blocktrans with invitation.from_user as invitation_from_user %}You  
accepted <a href="{{ user_url }}">{{ invitation_from_user }}</a>'s friend  
request.{% endblocktrans %}

Modified:  
trunk/friendsdev/friends/templates/notification/friends_invite_sent/teaser.html
==============================================================================
---  
trunk/friendsdev/friends/templates/notification/friends_invite_sent/teaser.html 
 
(original)
+++  
trunk/friendsdev/friends/templates/notification/friends_invite_sent/teaser.html 
 
Sat Sep 27 08:26:22 2008
@@ -1,2 +1,2 @@
-{% load i18n captureas_tag %}{% captureas user_url %}{% url profile_detail  
username=invitation.to_user.username %}{% endcaptureas %}
+{% load i18n %}{% url profile_detail username=invitation.to_user.username  
as user_url %}
  {% blocktrans with invitation.to_user as invitation_to_user %}you have  
invited <a href="{{ user_url }}">{{ invitation_to_user }}</a> to add you as  
a friend.{% endblocktrans %}

Modified:  
trunk/friendsdev/friends/templates/notification/friends_otherconnect/teaser.html
==============================================================================
---  
trunk/friendsdev/friends/templates/notification/friends_otherconnect/teaser.html
         
(original)
+++  
trunk/friendsdev/friends/templates/notification/friends_otherconnect/teaser.html
         
Sat Sep 27 08:26:22 2008
@@ -1,2 +1,2 @@
-{% load i18n captureas_tag %}{% captureas from_user_url %}{% url  
profile_detail username=invitation.from_user.username %}{%  
endcaptureas %}{% captureas to_user_url %}{% url profile_detail  
username=to_user.username %}{% endcaptureas %}
+{% load i18n %}{% url profile_detail  
username=invitation.from_user.username as from_user_url %}{% url  
profile_detail username=to_user.username as to_user_url %}
  {% blocktrans with invitation.from_user as invitation_from_user %}<a  
href="{{ from_user_url }}">{{ invitation_from_user }}</a> and <a href="{{  
to_user_url }}">{{ to_user }}</a> are now friends.{% endblocktrans %}

Modified:  
trunk/friendsdev/friends/templates/notification/join_accept/teaser.html
==============================================================================
--- trunk/friendsdev/friends/templates/notification/join_accept/teaser.html     
 
(original)
+++ trunk/friendsdev/friends/templates/notification/join_accept/teaser.html     
 
Sat Sep 27 08:26:22 2008
@@ -1,2 +1,2 @@
-{% load i18n captureas_tag %}{% captureas user_url %}{% url profile_detail  
username=new_user.username %}{% endcaptureas %}
+{% load i18n %}{% url profile_detail username=new_user.username as  
user_url %}
  {% blocktrans %}<a href="{{ user_url }}">{{ new_user }} has joined and is  
now a friend.{% endblocktrans %}

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to