mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
Co-authored-by: Simon L. <szaimen@e.mail.de> Signed-off-by: Jean-Yves <7360784+docjyJ@users.noreply.github.com>
23 lines
No EOL
744 B
Twig
23 lines
No EOL
744 B
Twig
{# @var c \App\Containers\Container #}
|
|
<li>
|
|
{% if c.GetStartingState().value == 'starting' %}
|
|
<span class="status running"></span>
|
|
{% elseif c.GetRunningState().value == 'running' %}
|
|
<span class="status success"></span>
|
|
{% else %}
|
|
<span class="status error"></span>
|
|
{% endif %}
|
|
<span>
|
|
{{ c.GetDisplayName() }}
|
|
(<a href="/api/docker/logs?id={{ c.GetIdentifier() }}" target="_blank">Stopped</a>)
|
|
{% if c.GetDocumentation() != '' %}
|
|
(<a target="_blank" href="{{ c.GetDocumentation() }}">docs</a>)
|
|
{% endif %}
|
|
</span>
|
|
{% if c.GetUiSecret() != '' %}
|
|
<details>
|
|
<summary>Show password for {{ c.GetDisplayName() }}</summary>
|
|
<p>{{ c.GetUiSecret() }}</p>
|
|
</details>
|
|
{% endif %}
|
|
</li> |