8aad2ab43d
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
876 B
HTML
21 lines
876 B
HTML
{# settings/_install_result.html — inline result after install/reload action #}
|
|
<div id="catalog-result-{{ name }}"
|
|
style="margin-top:0.6rem;padding:0.5rem 0.75rem;border-radius:5px;font-size:0.82rem;
|
|
background:{% if success %}var(--green-dim){% else %}var(--red-dim){% endif %};
|
|
color:{% if success %}var(--green){% else %}#ff8090{% endif %};">
|
|
{{ message }}
|
|
{% if restart_required %}
|
|
·
|
|
<form method="post" action="/settings/plugins/restart/"
|
|
hx-post="/settings/plugins/restart/"
|
|
hx-target="#restart-banner"
|
|
hx-swap="outerHTML"
|
|
style="display:inline;margin:0;">
|
|
<button type="submit"
|
|
style="background:none;border:none;padding:0;color:var(--yellow);cursor:pointer;font-size:0.82rem;text-decoration:underline;">
|
|
Restart now
|
|
</button>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|