tfb-groupme-bridge/tfbbridge/bridge/templates/index_auth.html
stupidcomputer 2fceb6679f write the original user interface prototype
this is insecure, terrible, horrible code. do not use.

things implemented:
- add trusted users
- add trusted channels and follower channels
- qr codes and stuff
2024-12-20 21:34:22 -06:00

28 lines
758 B
HTML

{% extends 'base.html' %}
{% block 'body' %}
<h1>Welcome, {{ request.session.groupme_name }}</h1>
<h2>Available actions</h2>
<ul>
<li><a href="{% url 'add_organization_flow_select' %}">Create a new organization</a></li>
<li><a href="{% url 'refresh_group_data' %}">Refresh group data</a></li>
<li><a href="{% url 'logout' %}">Log out</a></li>
</ul>
{% if organizations|length > 0 %}
<h2>Your organizations</h2>
<ul>
{% for org in organizations %}
<li><a href="{% url 'view_organization' org.id %}">{{ org.name }}</a></li>
{% endfor %}
</ul>
{% else %}
<h2>Your organizations</h2>
<p>You don't seem to have any organizations &mdash; maybe <a href="{% url 'add_organization_flow_select' %}">create one</a>?</p>
{% endif %}
{% endblock %}