/priv/sites/zotonic_status/templates/_sites.tpl
https://code.google.com/p/zotonic/ · Smarty Template · 59 lines · 54 code · 5 blank · 0 comment · 6 complexity · fd7b1477bd24212aa6a1b21bc792125d MD5 · raw file
- <thead>
- <tr>
- <th>{_ Site _}</th>
- <th>{_ Status _}</th>
- {% if has_user %}
- <th>{_ Action _}</th>
- {% endif %}
- </tr>
- </thead>
-
- <tbody>
- {% for status, ss in sites %}
- {% for name,childspec,pid,time in ss %}
- {% if name /= 'zotonic_status' and (has_user or not configs[name].hidden) %}
- <tr id="site-{{ name }}" class="{{ status }}">
- <td>
- <a href="http://{{ configs[name].hostname|escape }}/">http://{{ configs[name].hostname|escape }}/</a>
- </td>
- <td>
- <span class="waiting status">{_ Waiting _}</span>
- <span class="running status">{_ Running _}</span>
- <span class="retrying status">{_ Retrying _}</span>
- <span class="failed status">{_ Failed _}</span>
- <span class="stopped status">{_ Stopped _}</span>
- </td>
- {% if has_user %}
- <td>
- {% button
- text=_"start"
- class="start"
- title=_"Start the site."
- postback={site_start site=name} %}
- {% button
- text=_"stop"
- class="stop"
- title=_"Stop the site."
- postback={site_stop site=name} %}
- {% button
- text=_"restart"
- class="restart"
- title=_"Restart the site, all users will be logged off."
- postback={site_restart site=name} %}
- {% button
- text=_"flush"
- class="flush"
- title=_"Flush and reload all settings, templates etc."
- postback={site_flush site=name} %}
-
- {% all include "_z_status_button.tpl" %}
- </td>
- {% endif %}
- </tr>
- {% endif %}
- {% endfor %}
- {% endfor %}
- </tbody>