<p id="notice"><%= notice %></p>

<h1><%= _("Site Configurations") %></h1>

<table>
  <thead>
    <tr>
      <th><%= _("Site name") %></th>
      <th><%= _("Url") %></th>
      <th><%= _("System notification email") %></th>
      <th><%= _("Support email address") %></th>
      <th><%= _("Support phone") %></th>
      <th><%= _("Site help link") %></th>
      <th><%= _("Languaje") %></th>
      <th><%= _("Landmark image") %></th>
      <th><%= _("First position image") %></th>
      <th><%= _("Moving position image") %></th>
      <th><%= _("Stop position image") %></th>
      <th><%= _("Idle position image") %></th>
      <th><%= _("Tow position image") %></th>
      <th><%= _("Alert position image") %></th>
      <th><%= _("Map default zoom") %></th>
      <th><%= _("Time zone") %></th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @site_configurations.each do |site_configuration| %>
      <tr>
        <td><%= site_configuration.site_name %></td>
        <td><%= site_configuration.url %></td>
        <td><%= site_configuration.system_notification_email %></td>
        <td><%= site_configuration.support_email_address %></td>
        <td><%= site_configuration.support_phone %></td>
        <td><%= site_configuration.site_help_link %></td>
        <td><%= site_configuration.languaje %></td>
        <td><%= site_configuration.landmark_image %></td>
        <td><%= site_configuration.first_position_image %></td>
        <td><%= site_configuration.moving_position_image %></td>
        <td><%= site_configuration.stop_position_image %></td>
        <td><%= site_configuration.idle_position_image %></td>
        <td><%= site_configuration.tow_position_image %></td>
        <td><%= site_configuration.alert_position_image %></td>
        <td><%= site_configuration.map_default_zoom %></td>
        <td><%= site_configuration.time_zone %></td>
        <td><%= link_to _("Show"), site_configuration %></td>
        <td><%= link_to _("Edit"), edit_site_configuration_path(site_configuration) %></td>
        <td><%= link_to _("Destroy"), site_configuration, method: :delete, data: { confirm: _("Are you sure?") } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Site Configuration', new_site_configuration_path %>
