Files
myapp-full/myapp/ns_user/views.py
RemiZOffAlex 60802cec8e Update
2019-04-26 15:38:41 +03:00

21 lines
490 B
Python

__author__ = 'RemiZOffAlex'
__copyright__ = '(c) RemiZOffAlex'
__license__ = 'MIT'
__email__ = 'remizoffalex@mail.ru'
__url__ = 'https://remizoffalex.ru'
from flask import render_template
from .. import app
@app.route('/users')
def users():
"""
Список пользователей
"""
pagedata = {}
pagedata['title'] = 'Список пользователей - ' + app.config['TITLE']
body = render_template('users.html', pagedata=pagedata)
return body