Add basic user browsing page

- Needs pagination
- Needs some style fixing
- Somewhat empty, fixes up next
This commit is contained in:
Xevion
2022-03-27 03:36:43 -05:00
parent 677abe3d65
commit 0609a2a86a
6 changed files with 120 additions and 45 deletions

View File

@@ -18,7 +18,8 @@ def about():
@blueprint.route('/users')
def browse():
return render_template('pages/browse.html')
users = User.query.all()
return render_template('pages/browse.html', users=users)
@blueprint.route('/feed')