#5: Started work on roles switching

This commit is contained in:
simon 2017-04-01 15:11:50 +01:00
parent 68bb22bd31
commit e425c56ec2
14 changed files with 661 additions and 19 deletions

View 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 %}