mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Use name instead of path if possible in breadcrumbs
This commit is contained in:
parent
34f22ee7de
commit
7df892535b
1 changed files with 4 additions and 0 deletions
|
@ -2,7 +2,11 @@
|
||||||
<a href="#/" ><i class="fa-home"></i><span class="sr-only">{{t 'home'}}</span></a>
|
<a href="#/" ><i class="fa-home"></i><span class="sr-only">{{t 'home'}}</span></a>
|
||||||
<a href="#/tools">{{t 'tools'}}</a>
|
<a href="#/tools">{{t 'tools'}}</a>
|
||||||
<a href="#/tools/logs">{{t 'logs'}}</a>
|
<a href="#/tools/logs">{{t 'logs'}}</a>
|
||||||
|
{{#if log.name}}
|
||||||
|
<a href="#/tools/logs/{{ log.name }}">{{ log.name }}</a>
|
||||||
|
{{else}}
|
||||||
<a href="#/tools/logs/{{ log.log_path }}">{{ log.log_path }}</a>
|
<a href="#/tools/logs/{{ log.log_path }}">{{ log.log_path }}</a>
|
||||||
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="actions-group">
|
<div class="actions-group">
|
||||||
|
|
Loading…
Reference in a new issue