mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 21:33:41 -05:00
add a language settings page
This commit is contained in:
parent
de5b1240c6
commit
1bf3f038fc
1 changed files with 5 additions and 0 deletions
5
app.py
5
app.py
|
@ -276,6 +276,11 @@ def information():
|
||||||
def accessibility():
|
def accessibility():
|
||||||
return render_template('admin/categories/accessibility.html')
|
return render_template('admin/categories/accessibility.html')
|
||||||
|
|
||||||
|
@admin_bp.route('/languages/', methods=['GET', 'POST'])
|
||||||
|
@loginRequired
|
||||||
|
def languages():
|
||||||
|
return render_template('admin/categories/languages.html')
|
||||||
|
|
||||||
@admin_bp.route('/notifications/', methods=['GET', 'POST'])
|
@admin_bp.route('/notifications/', methods=['GET', 'POST'])
|
||||||
@loginRequired
|
@loginRequired
|
||||||
def notifications():
|
def notifications():
|
||||||
|
|
Loading…
Add table
Reference in a new issue