Bug 22015: Move DataTables CSS to global include
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / cities.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% SET footerjs = 1 %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <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>
6 [% INCLUDE 'doc-head-close.inc' %]
7 </head>
8
9 <body id="admin_cities" class="admin">
10 [% INCLUDE 'header.inc' %]
11 [% INCLUDE 'cities-admin-search.inc' %]
12
13 <div id="breadcrumbs">
14     <a href="/cgi-bin/koha/mainpage.pl">Home</a>
15     &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
16     &rsaquo; <a href="/cgi-bin/koha/admin/cities.pl">Cities</a>
17     [% IF op == 'add_form' %]
18     &rsaquo; [% IF city.cityid %]Modify[% ELSE %]New[% END %] City
19     [% ELSIF op == 'delete_confirm' %]
20     &rsaquo; Confirm deletion of city
21     [% END %]
22 </div>
23
24 <div class="main container-fluid">
25     <div class="row">
26         <div class="col-sm-10 col-sm-push-2">
27             <main>
28
29 [% FOR m IN messages %]
30     <div class="dialog [% m.type | html %]">
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 | html %]
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 | html %]" />
62
63         <fieldset class="rows">
64             <ol>
65                 [% IF city %]
66                     <li><span class="label">City ID: </span>[% city.cityid | html %]</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 | html %]" 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 | html %]?"</h3>
97         <table>
98             <tr><th>City id</th>
99                 <td>[% city.cityid | html %]</td>
100             </tr>
101             <tr><th>City</th>
102                 <td>[% city.city_name | html %]</td>
103             </tr>
104             <tr><th>State</th>
105                 <td>[% city.city_state | html %]</td>
106             </tr>
107             <tr><th>ZIP/Postal code</th>
108                 <td>[% city.city_zipcode | html %]</td>
109             </tr>
110             <tr><th>Country</th>
111                 <td>[% city.city_country | html %]</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 | html %]" />
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                 <tr>
140                     <th>City ID</th>
141                     <th>City</th>
142                     <th>State</th>
143                     <th>ZIP/Postal code</th>
144                     <th>Country</th>
145                     <th>Actions</th>
146                 </tr>
147             </thead>
148             <tbody>
149                 [% FOREACH city IN cities %]
150                 <tr>
151                     <td>[% city.cityid | html %]</td>
152                     <td>[% city.city_name | html %]</td>
153                     <td>[% city.city_state | html %]</td>
154                     <td>[% city.city_zipcode | html %]</td>
155                     <td>[% city.city_country | html %]</td>
156                     <td class="actions">
157                         <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/cities.pl?op=add_form&amp;cityid=[% city.cityid | html %]"><i class="fa fa-pencil"></i> Edit</a>
158                         <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/cities.pl?op=delete_confirm&amp;cityid=[% city.cityid | html %]"><i class="fa fa-trash"></i> Delete</a>
159                     </td>
160                 </tr>
161                 [% END %]
162             </tbody>
163         </table>
164     [% ELSE %]
165         <div class="dialog message">
166             There are no cities defined. <a href="/cgi-bin/koha/admin/cities.pl?op=add_form">Create a new city</a>.
167         </div>
168     [% END %]
169 [% END %]
170
171             </main>
172         </div> <!-- /.col-sm-10.col-sm-push-2 -->
173
174         <div class="col-sm-2 col-sm-pull-10">
175             <aside>
176                 [% INCLUDE 'admin-menu.inc' %]
177             </aside>
178         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
179      </div> <!-- /.row -->
180
181 [% MACRO jsinclude BLOCK %]
182     [% Asset.js("js/admin-menu.js") | $raw %]
183     [% INCLUDE 'datatables.inc' %]
184     <script>
185         $(document).ready(function() {
186             $("#table_cities").dataTable($.extend(true, {}, dataTablesDefaults, {
187                 "aoColumnDefs": [
188                     { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
189                 ],
190                 "aaSorting": [[ 1, "asc" ]],
191                 "iDisplayLength": 10,
192                 "sPaginationType": "full_numbers"
193             }));
194         });
195     </script>
196 [% END %]
197 [% INCLUDE 'intranet-bottom.inc' %]