Bug fixes and new styling for the news page

This commit is contained in:
Inga Kirschnick
2022-12-21 14:38:17 +01:00
parent c79bc1ed57
commit f5a1cf75dd
6 changed files with 59 additions and 43 deletions

View File

@ -28,7 +28,7 @@ def faq():
@login_required
def dashboard():
users = [
u.to_json_serializeable(filter_by_privacy_settings=True, include_avatar_relationship=True) for u
u.to_json_serializeable(filter_by_privacy_settings=True) for u
in User.query.filter(User.is_public == True, User.id != current_user.id).all()
]
return render_template('main/dashboard.html.j2', title='Dashboard', users=users)