mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Use the active/inactive status instead of running/exited/dead in service views
This commit is contained in:
parent
c9a9658279
commit
877e303e74
4 changed files with 5 additions and 4 deletions
|
@ -48,9 +48,9 @@
|
|||
data2.service.name = c.params['service'];
|
||||
// Handlebars want booleans
|
||||
data2.service.is_loaded = (data.loaded=='enabled') ? true : false;
|
||||
data2.service.is_running = (data.status=='running') ? true : false;
|
||||
data2.service.is_running = (data.active=='active') ? true : false;
|
||||
// Translate status and loaded state
|
||||
data2.service.status = y18n.t(data.status);
|
||||
data2.service.active = y18n.t(data.active);
|
||||
data2.service.loaded = y18n.t(data.loaded);
|
||||
store.clear('slide');
|
||||
c.view('service/service_info', data2);
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"action": "Action",
|
||||
"active": "Active",
|
||||
"add": "Add",
|
||||
"remove": "Remove",
|
||||
"administration_password": "Administration password",
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
<br>
|
||||
{{t 'service_status'}}
|
||||
<span class="text-{{#is_running}}success{{/is_running}}{{^is_running}}danger{{/is_running}}">
|
||||
{{status}}
|
||||
{{active}}
|
||||
</span>
|
||||
<br>
|
||||
{{t 'started_at'}}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<div class="list-group-item-text">
|
||||
{{t 'service_status'}}
|
||||
<span class="text-{{#is_running}}success{{/is_running}}{{^is_running}}danger{{/is_running}}">
|
||||
{{status}}
|
||||
{{active}}
|
||||
</span>
|
||||
<br>
|
||||
{{t 'started_at'}}
|
||||
|
|
Loading…
Reference in a new issue