mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
34 lines
2.9 KiB
HTML
34 lines
2.9 KiB
HTML
{% if not cname -%}
|
||
{% set cname = None %}
|
||
{% endif -%}
|
||
{% if not server -%}
|
||
{% set server = None %}
|
||
{% endif -%}
|
||
{% if not settings and not me -%}
|
||
<div class="btn-group btn-group-justified hidden-md hidden-lg">
|
||
{% if backup -%}
|
||
<a class="btn btn-default {% if overview %}active{% endif %}" href="{{ url_for('view.client_browse', name=cname, server=server, backup=nbackup) }}"><i class="fa fa-th" aria-hidden="true"></i> {{ _('Overview') }}</a>
|
||
{% elif client -%}
|
||
<a class="btn btn-default {% if overview %}active{% endif %}" href="{{ url_for('view.client', name=cname, server=server) }}"><i class="fa fa-th" aria-hidden="true"></i> {{ _('Overview') }}</a>
|
||
{% elif clients -%}
|
||
<a class="btn btn-default {% if overview %}active{% endif %}" href="{{ url_for('view.clients', server=server) }}"><i class="fa fa-th" aria-hidden="true"></i> {{ _('Overview') }}</a>
|
||
{% elif servers -%}
|
||
<a class="btn btn-default {% if overview %}active{% endif %}" href="{{ url_for('view.servers') }}"><i class="fa fa-th" aria-hidden="true"></i> {{ _('Overview') }}</a>
|
||
{% else -%}
|
||
<a class="btn btn-default {% if overview %}active{% endif %}" href="#"><i class="fa fa-th" aria-hidden="true"></i> {{ _('Overview') }}</a>
|
||
{% endif -%}
|
||
{% if client and not backup -%}
|
||
<a class="btn btn-default {% if report %}active{% endif %}" href="{{ url_for('view.client_report', name=cname, server=server) }}"><i class="fa fa-bar-chart" aria-hidden="true"></i> {{ _('Reports') }}</a>
|
||
{% elif clients -%}
|
||
<a class="btn btn-default {% if report %}active{% endif %}" href="{{ url_for('view.clients_report', server=server) }}"><i class="fa fa-bar-chart" aria-hidden="true"></i> {{ _('Reports') }}</a>
|
||
{% elif servers -%}
|
||
<a class="btn btn-default {% if report %}active{% endif %}" href="{{ url_for('view.servers_report') }}"><i class="fa fa-bar-chart" aria-hidden="true"></i> {{ _('Reports') }}</a>
|
||
{% elif backup -%}
|
||
<a class="btn btn-default {% if report %}active{% endif %}" href="{{ url_for('view.backup_report', name=cname, backup=nbackup, server=server) }}"><i class="fa fa-bar-chart" aria-hidden="true"></i> {{ _('Reports') }}</a>
|
||
{% else -%}
|
||
<a class="btn btn-default {% if report %}active{% endif %}" href="#"><i class="fa fa-bar-chart" aria-hidden="true"></i> {{ _('Reports') }}</a>
|
||
{% endif -%}
|
||
<a class="btn btn-default {% if calendar %}active{% endif %}" href="{{ url_for('view.calendar', client=cname, server=server) }}"><i class="fa fa-calendar" aria-hidden="true"></i> {{ _('Calendar') }}</a>
|
||
</div>
|
||
<br />
|
||
{% endif -%}
|