~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/templates/team-delete.pt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2010-01-07 06:27:46 UTC
  • mfrom: (10085.5.10 delete-team-bug-50525)
  • Revision ID: launchpad@pqm.canonical.com-20100107062746-7b2yoeeqmlqoeiwr
[r=gmb][ui=rs][bug 50525] Allow team owners, admins,
        and launchpad staff to delete teams. Currently listening to White
        Lies -- Taxidermy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html
 
2
  xmlns="http://www.w3.org/1999/xhtml"
 
3
  xmlns:tal="http://xml.zope.org/namespaces/tal"
 
4
  xmlns:metal="http://xml.zope.org/namespaces/metal"
 
5
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
 
6
  metal:use-macro="view/macro:page/main_only"
 
7
  i18n:domain="launchpad">
 
8
  <body>
 
9
    <div metal:fill-slot="main">
 
10
      <p>
 
11
        Deleting a team is permanent. It cannot be undone.
 
12
      </p>
 
13
 
 
14
      <p tal:condition="view/has_mailing_list">
 
15
        This team cannot be deleted until its mailing list is first
 
16
        deactivated, then purged after the deactivation is confirmed.
 
17
      </p>
 
18
 
 
19
      <p tal:condition="context/activemembers/count">
 
20
        <tal:dupe_name replace="context/fmt:displayname" /> has
 
21
        <tal:member_count replace="context/activemembers/count" />
 
22
        active members who will be removed before it is deleted.
 
23
      </p>
 
24
 
 
25
      <div metal:use-macro="context/@@launchpad_form/form">
 
26
        <tal:suppress-superfluous-widgets metal:fill-slot="widgets" />
 
27
      </div>
 
28
    </div>
 
29
  </body>
 
30
</html>