Bug 12904: Force browser to load new javascript files after upgrade
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / cities.tt
1 [% SET footerjs = 1 %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Administration &rsaquo; [% IF op =='add_form' %]Cities &rsaquo; [% IF city.cityid %] Modify city[% ELSE %] New city[% END %][% ELSE %][% IF op == 'delete_confirm' %]Cities &rsaquo; Confirm deletion of city[% ELSE %] Cities[% END %][% END %]</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables_[% KOHA_VERSION %].css" />
6 </head>
7
8 <body id="admin_cities" class="admin">
9 [% INCLUDE 'header.inc' %]
10 [% INCLUDE 'cities-admin-search.inc' %]
11
12 <div id="breadcrumbs">
13     <a href="/cgi-bin/koha/mainpage.pl">Home</a>
14     &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
15     &rsaquo; <a href="/cgi-bin/koha/admin/cities.pl">Cities</a>
16     [% IF op == 'add_form' %]
17     &rsaquo; [% IF city.cityid %]Modify[% ELSE %]New[% END %] City
18     [% ELSIF op == 'delete_confirm' %]
19     &rsaquo; Confirm deletion of city
20     [% END %]
21 </div>
22
23 <div id="doc3" class="yui-t2">
24
25    <div id="bd">
26     <div id="yui-main">
27     <div class="yui-b">
28
29 [% FOR m IN messages %]
30     <div class="dialog [% m.type %]">
31         [% SWITCH m.code %]
32         [% CASE 'error_on_update' %]
33             An error occurred when updating this city. Perhaps it already exists.
34         [% CASE 'error_on_insert' %]
35             An error occurred when adding this city. The city id might already exist.
36         [% CASE 'error_on_delete' %]
37             An error occurred when deleting this city. Check the logs.
38         [% CASE 'success_on_update' %]
39             City updated successfully.
40         [% CASE 'success_on_insert' %]
41             City added successfully.
42         [% CASE 'success_on_delete' %]
43             City deleted successfully.
44         [% CASE 'already_exists' %]
45             This city already exists.
46         [% CASE %]
47             [% m.code %]
48         [% END %]
49     </div>
50 [% END %]
51
52 [% IF op == 'add_form' %]
53     [% IF city %]
54         <h1>Modify a city</h1>
55     [% ELSE %]
56         <h1>New city</h1>
57     [% END %]
58
59     <form action="/cgi-bin/koha/admin/cities.pl" name="Aform" method="post" class="validated">
60         <input type="hidden" name="op" value="add_validate" />
61         <input type="hidden" name="cityid" value="[% city.cityid %]" />
62
63         <fieldset class="rows">
64             <ol>
65                 [% IF city %]
66                     <li><span class="label">City ID: </span>[% city.cityid %]</li>
67                 [% END %]
68                 <li>
69                     <label for="city_name" class="required">City: </label>
70                     <input type="text" name="city_name" id="city_name" size="80" maxlength="100" value="[% city.city_name |html %]" required="required" class="required" /> <span class="required">Required</span>
71                 </li>
72                 <li>
73                     <label for="city_state">State: </label>
74                     <input type="text" name="city_state" id="city_state" size="80" maxlength="100" value="[% city.city_state |html %]" />
75                 </li>
76                 <li>
77                     <label for="city_zipcode" class="required">ZIP/Postal code: </label>
78                     <input type="text" name="city_zipcode" id="city_zipcode" size="20" maxlength="20" value="[% city.city_zipcode %]" required="required" class="required" /> <span class="required">Required</span>
79                 </li>
80                 <li>
81                     <label for="city_country">Country: </label>
82                     <input type="text" name="city_country" id="city_country" size="80" maxlength="100" value="[% city.city_country |html %]" />
83                 </li>
84             </ol>
85         </fieldset>
86
87         <fieldset class="action">
88             <input type="submit" value="Submit" />
89             <a class="cancel" href="/cgi-bin/koha/admin/cities.pl">Cancel</a>
90         </fieldset>
91     </form>
92 [% END %]
93
94 [% IF op == 'delete_confirm' %]
95     <div class="dialog alert">
96         <h3>Delete city "[% city.city_name %]?"</h3>
97         <table>
98             <tr><th>City id</th>
99                 <td>[% city.cityid %]</td>
100             </tr>
101             <tr><th>City</th>
102                 <td>[% city.city_name %]</td>
103             </tr>
104             <tr><th>State</th>
105                 <td>[% city.city_state %]</td>
106             </tr>
107             <tr><th>ZIP/Postal code</th>
108                 <td>[% city.city_zipcode %]</td>
109             </tr>
110             <tr><th>Country</th>
111                 <td>[% city.city_country %]</td>
112             </tr>
113         </table>
114         <form action="/cgi-bin/koha/admin/cities.pl" method="post">
115             <input type="hidden" name="op" value="delete_confirmed" />
116             <input type="hidden" name="cityid" value="[% city.cityid %]" />
117             <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete</button>
118         </form>
119         <form action="/cgi-bin/koha/admin/cities.pl" method="get">
120             <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button>
121         </form>
122     </div>
123 [% END %]
124
125 [% IF op == 'list' %]
126
127     <div id="toolbar" class="btn-toolbar">
128         <a class="btn btn-default btn-sm" id="newcity" href="/cgi-bin/koha/admin/cities.pl?op=add_form"><i class="fa fa-plus"></i> New city</a>
129     </div>
130
131     <h2>Cities</h2>
132     [% IF searchfield %]
133         Searching: [% searchfield |html %]
134     [% END %]
135
136     [% IF cities.count %]
137         <table id="table_cities">
138             <thead>
139                 <th>City ID</th>
140                 <th>City</th>
141                 <th>State</th>
142                 <th>ZIP/Postal code</th>
143                 <th>Country</th>
144                 <th>Actions</th>
145             </thead>
146             <tbody>
147                 [% FOREACH city IN cities %]
148                 <tr>
149                     <td>[% city.cityid %]</td>
150                     <td>[% city.city_name %]</td>
151                     <td>[% city.city_state %]</td>
152                     <td>[% city.city_zipcode %]</td>
153                     <td>[% city.city_country %]</td>
154                     <td class="actions">
155                         <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/cities.pl?op=add_form&amp;cityid=[% city.cityid %]"><i class="fa fa-pencil"></i> Edit</a>
156                         <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/cities.pl?op=delete_confirm&amp;cityid=[% city.cityid %]"><i class="fa fa-trash"></i> Delete</a>
157                     </td>
158                 </tr>
159                 [% END %]
160             </tbody>
161         </table>
162     [% ELSE %]
163         <div class="dialog message">
164             There are no cities defined. <a href="/cgi-bin/koha/admin/cities.pl?op=add_form">Create a new city</a>.
165         </div>
166     [% END %]
167 [% END %]
168
169 </div>
170 </div>
171 <div class="yui-b">
172 [% INCLUDE 'admin-menu.inc' %]
173 </div>
174 </div>
175
176 [% MACRO jsinclude BLOCK %]
177     <script type="text/javascript" src="[% interface %]/[% theme %]/js/admin-menu_[% KOHA_VERSION %].js"></script>
178     [% INCLUDE 'datatables.inc' %]
179     <script type="text/javascript">
180         $(document).ready(function() {
181             $("#table_cities").dataTable($.extend(true, {}, dataTablesDefaults, {
182                 "aoColumnDefs": [
183                     { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
184                 ],
185                 "aaSorting": [[ 1, "asc" ]],
186                 "iDisplayLength": 10,
187                 "sPaginationType": "full_numbers"
188             }));
189         });
190     </script>
191 [% END %]
192 [% INCLUDE 'intranet-bottom.inc' %]