aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/system/system.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+admin/system/system.component.html')
-rw-r--r--client/src/app/+admin/system/system.component.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/+admin/system/system.component.html b/client/src/app/+admin/system/system.component.html
index 345a101e6..7c4278d35 100644
--- a/client/src/app/+admin/system/system.component.html
+++ b/client/src/app/+admin/system/system.component.html
@@ -2,9 +2,11 @@
2 <div i18n class="form-sub-title">System</div> 2 <div i18n class="form-sub-title">System</div>
3 3
4 <div class="admin-sub-nav"> 4 <div class="admin-sub-nav">
5 <a i18n routerLink="jobs" routerLinkActive="active">Jobs</a> 5 <a *ngIf="hasJobsRight()" i18n routerLink="jobs" routerLinkActive="active">Jobs</a>
6 6
7 <a i18n routerLink="logs" routerLinkActive="active">Logs</a> 7 <a *ngIf="hasLogsRight()" i18n routerLink="logs" routerLinkActive="active">Logs</a>
8
9 <a *ngIf="hasDebugRight()" i18n routerLink="debug" routerLinkActive="active">Debug</a>
8 </div> 10 </div>
9</div> 11</div>
10 12