Bug 15413: Adding colons where appropriate
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / patron_lists / add-modify.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Tools &rsaquo; Patron lists &rsaquo;
3     [% IF list.patron_list_id %]
4         Modify patron list
5     [% ELSE %]
6         New patron list
7     [% END %]
8 </title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 </head>
11
12 <body id="patlist_add_modify" class="pat patlist">
13 [% INCLUDE 'header.inc' %]
14 [% INCLUDE 'cat-search.inc' %]
15 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; <a href="lists.pl">Patron lists</a> &rsaquo;
16     [% IF list.patron_list_id %]
17         Modify patron list
18     [% ELSE %]
19         New patron list
20     [% END %]
21 </div>
22
23
24 <div class="yui-t7">
25     <div class="yui-main">
26         <h1>
27             [% IF list.patron_list_id %]
28                 Modify patron list
29             [% ELSE %]
30                 New patron list
31             [% END %]
32         </h1>
33
34         <form method="post" action="/cgi-bin/koha/patron_lists/add-modify.pl" class="validated">
35             <fieldset class="rows">
36
37                 <legend>
38                     [% IF list.patron_list_id %]
39                     Modify patron list
40                     [% ELSE %]
41                     Create a new patron list
42                     [% END %]
43                 </legend>
44
45                 <ol>
46                     <li>
47                         <label class="required" for="list-name">Name:</label>
48                         <input id="list-name" name="name" type="text" class="required" required="required" value="[% list.name %]" />
49                     </li>
50
51                     <li>
52                         <span class="label">Owner: </span>[% loggedinusername %]
53                     </li>
54                 </ol>
55
56             </fieldset>
57
58             <fieldset class="action">
59                 <input type="hidden" name="patron_list_id" value="[% list.patron_list_id %]" />
60                 <input type="submit" value="Save" />
61                 <a href="lists.pl" class="cancel">Cancel</a>
62             </fieldset>
63         </form>
64     </div>
65
66 [% INCLUDE 'intranet-bottom.inc' %]