Author: jtauber
Date: Mon Oct 13 03:01:34 2008
New Revision: 1035
Modified:
trunk/projects/complete_project/templates/tribes/tribe.html
Log:
made sample template changes for tribe deletion
Modified: trunk/projects/complete_project/templates/tribes/tribe.html
==============================================================================
--- trunk/projects/complete_project/templates/tribes/tribe.html (original)
+++ trunk/projects/complete_project/templates/tribes/tribe.html Mon Oct 13
03:01:34 2008
@@ -57,6 +57,16 @@
<tr><td></td><td><input type="hidden" name="action"
value="update" /><input type="submit" value="{%
trans 'update' %}"/></td></tr>
</table>
</form>
+
+ {% ifequal tribe.members.all.count 1 %}
+ <p><img src="/site_media/delete.png" /> <a href="#"
onclick="$('#delete_tribe_form').toggle(); return false;">{% trans "Delete
tribe" %}</a><p>
+ <form class="delete_form" id="delete_tribe_form"
action="{% url tribe_delete tribe.slug %}" method="POST" style="display:
none;">
+ <input type="submit" value="{% trans "Delete
Tribe" %}" /> (all content will be removed)
+ </form>
+ {% else %}
+ <p>You are not the only member of the tribe so you can't
delete the tribe.</p>
+ {% endifequal %}
+
{% endifequal %}
{% if user.is_authenticated %}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---