/usr/share/flower/templates/navbar.html is in python-flower 0.8.3+dfsg-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">Celery Flower</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li {% if active_tab == "dashboard" %}class="active"{% end %}><a href="/dashboard">Dashboard</a></li>
<li {% if active_tab == "tasks" %}class="active"{% end %}><a href="/tasks?limit=100">Tasks</a></li>
<li {% if active_tab == "broker" %}class="active"{% end %}><a href="/broker">Broker</a></li>
<li {% if active_tab == "monitor" %}class="active"{% end %}><a href="/monitor">Monitor</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="http://flower.readthedocs.org" target="_blank">Docs</a></li>
<li><a href="https://github.com/mher/flower" target="_blank">Code</a></li>
</ul>
</div>
</div>
</div>
</div>
|