Css links
This commit is contained in:
@@ -47,3 +47,40 @@ def webui_welcome():
|
||||
"""
|
||||
return render_template('welcome.html')
|
||||
|
||||
|
||||
@bp.route('/webui/users')
|
||||
def webui_users():
|
||||
"""
|
||||
Users screen for the webui.
|
||||
|
||||
It's job right now is to:
|
||||
|
||||
- Set up an initial user
|
||||
|
||||
More functions will follow at a later stage
|
||||
"""
|
||||
return render_template('users.html')
|
||||
|
||||
|
||||
@bp.route('/webui/disks')
|
||||
def webui_disks():
|
||||
"""
|
||||
Disks screen for the webui.
|
||||
"""
|
||||
return render_template('disks.html')
|
||||
|
||||
|
||||
@bp.route('/webui/software')
|
||||
def webui_software():
|
||||
"""
|
||||
Software screen for the webui.
|
||||
"""
|
||||
return render_template('software.html')
|
||||
|
||||
|
||||
@bp.route('/webui/summary')
|
||||
def webui_summary():
|
||||
"""
|
||||
Summary screen for the webui.
|
||||
"""
|
||||
return render_template('summary.html')
|
||||
|
||||
Reference in New Issue
Block a user