-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from nsidc/create_user_list_view
Create user list view
- Loading branch information
Showing
7 changed files
with
66 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ROLES = [ | ||
'admin', | ||
# 'respondent', | ||
'respondent', | ||
# 'analyst', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from flask import render_template | ||
|
||
from usaon_vta_survey import app | ||
from usaon_vta_survey.models.tables import User | ||
|
||
|
||
@app.route('/users') | ||
def view_users(): | ||
users = User.query.order_by(User.name).all() | ||
return render_template( | ||
'users.html', | ||
users=users, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
usaon_vta_survey/templates/macros/login_button_or_private_nav_buttons.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{% macro user_login_buttons(current_user) -%} | ||
{% if current_user.is_authenticated %} | ||
{% if current_user.role=='admin' %} | ||
<a href="{{url_for('profile', user_id=current_user.id)}}">Profile</a> | ||
<a href="{{url_for('view_users')}}">Users</a> | ||
<a href="{{url_for('logout')}}">Logout</a> | ||
{% else %} | ||
<a href="{{url_for('profile', user_id=current_user.id)}}">Profile</a> | ||
<a href="{{url_for('logout')}}">Logout</a> | ||
{% endif %} | ||
{% else %} | ||
<a href="{{url_for('login')}}">Login</a> | ||
{% endif %} | ||
|
||
{%- endmacro -%} |
9 changes: 0 additions & 9 deletions
9
usaon_vta_survey/templates/macros/user_login_management_buttons.j2
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{% extends 'base.html' %} | ||
|
||
|
||
{% block content %} | ||
<h2>{% block title %}Users{% endblock %}</h1> | ||
|
||
{% if not current_user.is_authenticated %} | ||
<h3>Please login to view this page.</h3> | ||
{% else %} | ||
{% if not current_user.role=='admin' %} | ||
<h3>You don't belong here! This page is for admins only.</h3> | ||
{% else %} | ||
<table> | ||
|
||
<tr> | ||
<th>id</th> | ||
<th>Name</th> | ||
<th>Role</th> | ||
<th>Affiliation</th> | ||
<th>Bio</th> | ||
|
||
{% for user in users %} | ||
<tr> | ||
<td>{{user.id}} </td> | ||
<td>{{user.name}}</td> | ||
<td>{{user.role}}</td> | ||
<td>{{user.affiliation}}</td> | ||
<td>{{user.biography}}</td> | ||
</tr> | ||
{% endfor %} | ||
|
||
</table> | ||
{% endif %} | ||
{% endif %} | ||
{% endblock %} |