Author: leidel
Date: Sun Sep 28 12:11:05 2008
New Revision: 977
Modified:
trunk/local_apps/tribes/templates/notification/tribes_created_new_member/plain.txt
trunk/local_apps/tribes/templates/notification/tribes_friend_joined/plain.txt
trunk/local_apps/tribes/templates/notification/tribes_friend_tribe/plain.txt
trunk/local_apps/tribes/templates/notification/tribes_new_member/plain.txt
trunk/local_apps/tribes/templates/notification/tribes_new_topic/plain.txt
trunk/local_apps/tribes/templates/notification/tribes_new_tribe/plain.txt
trunk/local_apps/tribes/templates/notification/tribes_topic_response/plain.txt
Log:
Made tribes notification templates more useful
Modified:
trunk/local_apps/tribes/templates/notification/tribes_created_new_member/plain.txt
==============================================================================
---
trunk/local_apps/tribes/templates/notification/tribes_created_new_member/plain.txt
(original)
+++
trunk/local_apps/tribes/templates/notification/tribes_created_new_member/plain.txt
Sun Sep 28 12:11:05 2008
@@ -1 +1,4 @@
-{% load i18n %}{% blocktrans %}{{ user }} has joined the tribe {{ tribe
}}.{% endblocktrans %}
+{% load i18n %}{% blocktrans with tribe.get_absolute_url as tribe_url %}{{
user }} has joined the tribe {{ tribe }}.
+
+http://{{ current_site }}{{ tribe_url }}
+{% endblocktrans %}
Modified:
trunk/local_apps/tribes/templates/notification/tribes_friend_joined/plain.txt
==============================================================================
---
trunk/local_apps/tribes/templates/notification/tribes_friend_joined/plain.txt
(original)
+++
trunk/local_apps/tribes/templates/notification/tribes_friend_joined/plain.txt
Sun Sep 28 12:11:05 2008
@@ -1 +1,4 @@
-{% load i18n %}{% blocktrans %}{{ user }} has joined the tribe {{ tribe
}}.{% endblocktrans %}
+{% load i18n %}{% blocktrans with tribe.get_absolute_url as tribe_url %}{{
user }} has joined the tribe {{ tribe }}.
+
+http://{{ current_site }}{{ tribe_url }}
+{% endblocktrans %}
Modified:
trunk/local_apps/tribes/templates/notification/tribes_friend_tribe/plain.txt
==============================================================================
---
trunk/local_apps/tribes/templates/notification/tribes_friend_tribe/plain.txt
(original)
+++
trunk/local_apps/tribes/templates/notification/tribes_friend_tribe/plain.txt
Sun Sep 28 12:11:05 2008
@@ -1 +1,4 @@
-{% load i18n %}{% blocktrans with tribe.creator as tribe_creator %}{{
tribe_creator }} has created a new tribe {{ tribe }}.{% endblocktrans %}
+{% load i18n %}{% blocktrans with tribe.creator as tribe_creator and
tribe.get_absolute_url as tribe_url %}{{ tribe_creator }} has created a new
tribe {{ tribe }}.
+
+http://{{ current_site }}{{ tribe_url }}
+{% endblocktrans %}
Modified:
trunk/local_apps/tribes/templates/notification/tribes_new_member/plain.txt
==============================================================================
---
trunk/local_apps/tribes/templates/notification/tribes_new_member/plain.txt
(original)
+++
trunk/local_apps/tribes/templates/notification/tribes_new_member/plain.txt
Sun Sep 28 12:11:05 2008
@@ -1 +1,4 @@
-{% load i18n %}{% blocktrans %}{{ user }} has joined the tribe {{ tribe
}}.{% endblocktrans %}
+{% load i18n %}{% blocktrans with tribe.get_absolute_url as tribe_url %}{{
user }} has joined the tribe {{ tribe }}.
+
+http://{{ current_site }}{{ tribe_url }}
+{% endblocktrans %}
Modified:
trunk/local_apps/tribes/templates/notification/tribes_new_topic/plain.txt
==============================================================================
---
trunk/local_apps/tribes/templates/notification/tribes_new_topic/plain.txt
(original)
+++
trunk/local_apps/tribes/templates/notification/tribes_new_topic/plain.txt
Sun Sep 28 12:11:05 2008
@@ -1 +1,4 @@
-{% load i18n %}{% blocktrans with topic.creator as topic_creator and
topic.tribe as topic_tribe %}{{ topic_creator }} has started a topic '{{
topic }}' in tribe {{ topic_tribe }}.{% endblocktrans %}
+{% load i18n %}{% blocktrans with topic.creator as topic_creator and
topic.tribe as topic_tribe and topic.get_absolute_url as topic_url %}{{
topic_creator }} has started a topic '{{ topic }}' in tribe {{ topic_tribe
}}.
+
+http://{{ current_site }}{{ topic_url }}
+{% endblocktrans %}
Modified:
trunk/local_apps/tribes/templates/notification/tribes_new_tribe/plain.txt
==============================================================================
---
trunk/local_apps/tribes/templates/notification/tribes_new_tribe/plain.txt
(original)
+++
trunk/local_apps/tribes/templates/notification/tribes_new_tribe/plain.txt
Sun Sep 28 12:11:05 2008
@@ -1 +1,4 @@
-{% load i18n %}{% blocktrans %}A new tribe {{ tribe }} has been created.{%
endblocktrans %}
+{% load i18n %}{% blocktrans with tribe.get_absolute_url as tribe_url %}A
new tribe {{ tribe }} has been created.
+
+http://{{ current_site }}{{ tribe_url }}
+{% endblocktrans %}
Modified:
trunk/local_apps/tribes/templates/notification/tribes_topic_response/plain.txt
==============================================================================
---
trunk/local_apps/tribes/templates/notification/tribes_topic_response/plain.txt
(original)
+++
trunk/local_apps/tribes/templates/notification/tribes_topic_response/plain.txt
Sun Sep 28 12:11:05 2008
@@ -1 +1,4 @@
-{% load i18n %}{% blocktrans %}{{ user }} has responded to your topic '{{
topic }}'.{% endblocktrans %}
+{% load i18n %}{% blocktrans with topic.get_absolute_url as topic_url %}{{
user }} has responded to your topic '{{ topic }}'.
+
+http://{{ current_site }}{{ topic_url }}
+{% 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
-~----------~----~----~----~------~----~------~--~---