src/cm/templates/site/macros/main_tabs.html
changeset 63 0a610af4033f
parent 0 40c8f766c9b8
child 64 d0478be65c29
--- a/src/cm/templates/site/macros/main_tabs.html	Mon Dec 14 10:05:21 2009 +0100
+++ b/src/cm/templates/site/macros/main_tabs.html	Mon Dec 14 13:54:47 2009 +0100
@@ -13,7 +13,7 @@
         <li><a id="user_link" class="cust_behav" href="#user">{% blocktrans with nb_users as nb_users %}People  ({{ nb_users }}){% endblocktrans %}</a></li>
         <li><a id="settings_link" class="cust_behav" href="#settings">{% blocktrans %}Settings{% endblocktrans %}</a></li>
         {% endif %}
-        <li><a id="notifications_link" class="cust_behav" href="#notifications">Notifications</a></li>
+        <li><a id="followup_link" class="cust_behav" href="#followup">Followup</a></li>
     </ul> 
 </div>
 
@@ -25,7 +25,7 @@
 tb_conf['user-url'] = "{% url user %}";
 tb_conf['settings-url'] = "{% url settings %}";
 {% endif %}
-tb_conf['notifications-url'] = "{% url notifications %}";
+tb_conf['followup-url'] = "{% url followup %}";
 
 renderTabs = function (current_tab) {
 
@@ -48,11 +48,11 @@
         tab_index = 3;        
     }    
 
-    if (current_tab == 'notifications') {
+    if (current_tab == 'followup') {
         tab_index = 4;
     }        
     {% else %}
-    if (current_tab == 'notifications') {
+    if (current_tab == 'followup') {
         tab_index = 2;
     }            
     {% endif %}
@@ -69,7 +69,7 @@
     $("#user_link").attr("href", tb_conf['user-url']) ;
     $("#settings_link").attr("href", tb_conf['settings-url']) ;
     {% endif %}
-    $("#notifications_link").attr("href", tb_conf['notifications-url']) ;
+    $("#followup_link").attr("href", tb_conf['followup-url']) ;
 
 } ;