mirror of
https://github.com/Mailu/Mailu.git
synced 2025-01-12 02:28:20 +02:00
Rename /status to /services
This commit is contained in:
parent
46f2af3837
commit
5677c85368
@ -36,7 +36,7 @@
|
||||
<li class="header">Administration</li>
|
||||
{% if current_user.global_admin %}
|
||||
<li>
|
||||
<a href="{{ url_for('.status') }}">
|
||||
<a href="{{ url_for('.services') }}">
|
||||
<i class="fa fa-dashboard"></i> <span>Services status</span>
|
||||
</a>
|
||||
</li>
|
||||
|
@ -8,9 +8,9 @@ import flask
|
||||
import json
|
||||
|
||||
|
||||
@app.route('/status', methods=['GET'])
|
||||
@app.route('/services', methods=['GET'])
|
||||
@flask_login.login_required
|
||||
def status():
|
||||
def services():
|
||||
utils.require_global_admin()
|
||||
containers = {}
|
||||
for brief in dockercli.containers(all=True):
|
||||
@ -20,7 +20,7 @@ def status():
|
||||
name = container['Config']['Labels']['com.docker.compose.service']
|
||||
containers[name] = container
|
||||
pprint.pprint(container)
|
||||
return flask.render_template('admin/status.html', containers=containers)
|
||||
return flask.render_template('admin/services.html', containers=containers)
|
||||
|
||||
|
||||
@app.route('/admins', methods=['GET'])
|
||||
|
Loading…
Reference in New Issue
Block a user