#5: Started work on roles switching
This commit is contained in:
parent
68bb22bd31
commit
e425c56ec2
14 changed files with 661 additions and 19 deletions
13
resources/templates/roles.html
Normal file
13
resources/templates/roles.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{% extends "base-authenticated.html" %}
|
||||
{% block title %}
|
||||
{% endblock %}
|
||||
{% block big-links %}
|
||||
<div class="big-link-container">
|
||||
<a href="app" class="big-link" id="big-link">Canvasser</a>
|
||||
</div>
|
||||
{% for role in roles %}
|
||||
<div class="big-link-container">
|
||||
<a href="{{role}}" class="big-link" id="big-link">{{role}}</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue