mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[enh] Display warning when no debug logs are available.
This commit is contained in:
parent
866e2d8182
commit
f4e066b513
2 changed files with 9 additions and 0 deletions
|
@ -105,6 +105,7 @@
|
||||||
"app_access" : "Access",
|
"app_access" : "Access",
|
||||||
"app_make_default" : "Make default",
|
"app_make_default" : "Make default",
|
||||||
"app_debug_tab" : "Display debug information",
|
"app_debug_tab" : "Display debug information",
|
||||||
|
"app_debug_no_logs" : "Application logs are not available",
|
||||||
"app_access_title" : "%s access",
|
"app_access_title" : "%s access",
|
||||||
"allowed_users" : "Allowed users",
|
"allowed_users" : "Allowed users",
|
||||||
"remove_access" : "Remove access",
|
"remove_access" : "Remove access",
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
|
|
||||||
|
{{#if services}}
|
||||||
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
|
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
|
||||||
{{#services}}
|
{{#services}}
|
||||||
<div class="panel panel-default">
|
<div class="panel panel-default">
|
||||||
|
@ -28,3 +29,10 @@
|
||||||
</div>
|
</div>
|
||||||
{{/services}}
|
{{/services}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{else}}
|
||||||
|
<div class="alert alert-warning">
|
||||||
|
<span class="fa-exclamation-triangle"></span>
|
||||||
|
{{t 'app_debug_no_logs'}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue