[% SWITCH m.code %]
[% CASE 'error_on_update' %]
An error occurred when updating this city. Perhaps it already exists.
[% CASE 'error_on_insert' %]
An error occurred when adding this city. The city ID might already exist.
[% CASE 'error_on_delete' %]
An error occurred when deleting this city. Check the logs for details.
[% CASE 'success_on_update' %]
City updated successfully.
[% CASE 'success_on_insert' %]
City added successfully.
[% CASE 'success_on_delete' %]
City deleted successfully.
[% CASE 'already_exists' %]
This city already exists.
[% CASE %]
[% m.code | html %]
[% END %]
[% END %]
[% IF op == 'add_form' %]
[% IF city %]
[% tx("Modify city '{city}'", { city = city.city_name }) | html %]
[% ELSE %]New city
[% END %] [% END %] [% IF op == 'delete_confirm' %][% tx("Confirm deletion of city '{city}'", { city = city.city_name }) | html %]
City id | [% city.cityid | html %] |
---|---|
City | [% city.city_name | html %] |
State | [% city.city_state | html %] |
ZIP/Postal code | [% city.city_zipcode | html %] |
Country | [% city.city_country | html %] |
Cities
[% IF city_name_filter %] Searching: [% city_name_filter | html %] [% END %] [% IF cities_count > 0 %]City ID | City | State | ZIP/Postal code | Country | Actions |
---|
There are no cities defined. Create a new city.
[% END %]
[% END %]