~ubuntu-branches/debian/squeeze/sympa/squeeze

« back to all changes in this revision

Viewing changes to web_tt2/d_control.tt2

  • Committer: Bazaar Package Importer
  • Author(s): Christian Perrier
  • Date: 2007-01-20 18:09:28 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070120180928-0e42mbwg87mlo44y
Tags: 5.2.3-1.2
* Non-maintainer upload to re-fix l10n issues
* As debconf-updatepo was not run in previous versions, the French
  translation was outdated. Hence fix it.
* Remove several duplicate spaces in the debconf templates

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- $Id: d_control.tt2,v 1.9 2005/08/09 09:52:42 sympa-authors Exp $ -->
 
2
 
 
3
 
 
4
<span style="float: right"><a class="actionMenuLinks" href="[% path_cgi %]/d_read/[% list %]/[% escaped_father %]">[%|loc%]Up to higher level directory[%END%]</a></span>
 
5
 
 
6
<h2>[%|loc(visible_path)%]Access control for the document %1[%END%]</h2>
 
7
 
 
8
<br /> 
 
9
 
 
10
    [%|loc(owner)%]Owner : %1[%END%] <br />
 
11
    [%|loc(doc_date)%]Last update : %1[%END%] <br />
 
12
    [%|loc(doc_title)%]Description : %1[%END%] <br /><br />
 
13
 
 
14
<div class="block">
 
15
  <form action="[% path_cgi %]" method="post">
 
16
<p>
 
17
  <label><strong>[%|loc%]Read access[%END%]</strong><br />
 
18
  <select name="read_access">
 
19
  [% FOREACH s = scenari_read %]
 
20
    <option value='[% s.key %]' [% s.value.selected %]>[% s.value.title %]</option>
 
21
  [% END %]
 
22
  </select>
 
23
  </label>
 
24
</p>
 
25
<p>
 
26
  <label><strong>[%|loc%]Edit access[%END%]</strong><br />
 
27
  <select name="edit_access">
 
28
  [% FOREACH s = scenari_edit %]
 
29
    <option value='[% s.key %]' [% s.value.selected %]>[% s.value.title %]</option>
 
30
  [% END %]
 
31
  </select>
 
32
  </label>
 
33
</p>
 
34
<p> 
 
35
   <input type="hidden" name="list" value="[% list %]" />
 
36
   <input type="hidden" name="path" value="[% path %]" />
 
37
   <input type="hidden" name="serial" value="[% serial_desc %]" />
 
38
   <input class="MainMenuLinks" type="submit" name="action_d_change_access" value="[%|loc%]change access[%END%]" />
 
39
   </form>
 
40
</p>
 
41
</div>
 
42
<br /><br />
 
43
 
 
44
   [% IF set_owner %]
 
45
     <div class="block">
 
46
     <form action="[% path_cgi %]" method="post">
 
47
     <p>
 
48
     <label for="content"><strong>[%|loc(visible_path)%]Set the owner of the directory %1[%END%]</strong></label><br />
 
49
     <input type="hidden" name="list" value="[% list %]" />
 
50
     <input type="hidden" name="path" value="[% path %]" />
 
51
     <input type="hidden" name="serial" value="[% serial_desc %]" />
 
52
     <input type="hidden" name="action" value="d_set_owner" />
 
53
     <input maxlength="50" name="content" id="content" value="[% owner %]" size="30" />
 
54
     <input class="MainMenuLinks" type="submit" name="action_d_set_owner" value="[%|loc%]Set owner[%END%]" />
 
55
     </P>
 
56
     </form>
 
57
     </div>
 
58
 
 
59
  [% END %]
 
60