add teacher report and admin links

This commit is contained in:
lauren 2020-11-10 09:59:47 -05:00
parent e53d8f44c3
commit 6be42f7aa1

View File

@ -34,5 +34,13 @@
</div> </div>
{% block content %}{% endblock %} {% block content %}{% endblock %}
</main> </main>
<div class="size-5 my-2 josefin-sans text-center">
{% if user.is_teacher %}
<a style="padding:20px;" target="_blank" href="https://docs.google.com/forms/d/e/1FAIpQLSddHARB7zIgCBN-swWkejx6f4wJNslxh5AnkS65BzJ2pt7uLQ/viewform?usp=sf_link">Report a Study Guide</a>
{% elif user.is_superuser or user.is_staff %}
<a style="padding:20px;" target="_blank" href="https://docs.google.com/forms/d/e/1FAIpQLSddHARB7zIgCBN-swWkejx6f4wJNslxh5AnkS65BzJ2pt7uLQ/viewform?usp=sf_link">Report a Study Guide</a>
<a style="padding:20px;" href="/admin">Access Admin Console</a>
{% endif %}
</div>
</body> </body>
</html> </html>