remove menu button
This commit is contained in:
parent
48be55abcf
commit
236b2ebdcd
2 changed files with 1 additions and 2 deletions
|
@ -24,7 +24,7 @@
|
|||
<td data-title="Email"><font {% if usr.is_administrator() == True %}color="red"{% endif %}>{{ usr.email }}</td>
|
||||
<td data-title="Last Seen">{{ moment(usr.last_seen).format('lll') }}</td>
|
||||
<td data-title="Last IP"><a href="https://apps.db.ripe.net/search/query.html?searchtext={{ usr.last_ip }}" data-toggle="tooltip" title="RIPE Whois Search" target="_blank">{{ usr.last_ip }}</a></td>
|
||||
<a href="{{ url_for('panel.dashboard', user_id=usr.id) }}" data-toggle="tooltip" title="Show Dashboard"><span class="glyphicon glyphicon-modal-window"></span></a>
|
||||
<td data-title="Dashboard" target="_blank"><a href="{{ url_for('panel.dashboard', user_id=usr.id) }}" data-toggle="tooltip" title="Show Dashboard"><span class="glyphicon glyphicon-modal-window"></span></a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
{% if not current_user.is_authenticated %}
|
||||
<li><a href="#"><span class="glyphicon glyphicon-phone"></span> Menu</a></li>
|
||||
<li><a href="{{ url_for('auth.register') }}"><span class="glyphicon glyphicon-pencil"></span> Register</a></li>
|
||||
<li><a href="{{ url_for('auth.login') }}"><span class="glyphicon glyphicon-lock"></span> Login</a></li>
|
||||
{% else %}
|
||||
|
|
Loading…
Reference in a new issue