View | Details | Raw Unified | Return to bug 16541
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt (-5 / +5 lines)
Lines 154-161 Link Here
154
                <th>State</th>
154
                <th>State</th>
155
                <th>ZIP/Postal code</th>
155
                <th>ZIP/Postal code</th>
156
                <th>Country</th>
156
                <th>Country</th>
157
                <th>&nbsp;</th>
157
                <th>Actions</th>
158
                <th>&nbsp;</th>
159
            </thead>
158
            </thead>
160
            <tbody>
159
            <tbody>
161
                [% FOREACH city IN cities %]
160
                [% FOREACH city IN cities %]
Lines 165-172 Link Here
165
                    <td>[% city.city_state %]</td>
164
                    <td>[% city.city_state %]</td>
166
                    <td>[% city.city_zipcode %]</td>
165
                    <td>[% city.city_zipcode %]</td>
167
                    <td>[% city.city_country %]</td>
166
                    <td>[% city.city_country %]</td>
168
                    <td><a href="/cgi-bin/koha/admin/cities.pl?op=add_form&amp;cityid=[% city.cityid %]">Edit</a></td>
167
                    <td class="actions">
169
                    <td><a href="/cgi-bin/koha/admin/cities.pl?op=delete_confirm&amp;cityid=[% city.cityid %]">Delete</a></td>
168
                        <a class="btn btn-mini" href="/cgi-bin/koha/admin/cities.pl?op=add_form&amp;cityid=[% city.cityid %]"><i class="fa fa-pencil"></i> Edit</a>
169
                        <a class="btn btn-mini" href="/cgi-bin/koha/admin/cities.pl?op=delete_confirm&amp;cityid=[% city.cityid %]"><i class="fa fa-trash"></i> Delete</a>
170
                    </td>
170
                </tr>
171
                </tr>
171
                [% END %]
172
                [% END %]
172
            </tbody>
173
            </tbody>
173
- 

Return to bug 16541