forked from gergely/calendar-social
12 lines
331 B
HTML
12 lines
331 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>{% trans %}Groups{% endtrans %}</h2>
|
|
{% for group in groups %}
|
|
<a href="{{ group.url }}">{{ group }}</a>
|
|
{% else %}
|
|
{% trans %}No groups.{% endtrans %}
|
|
<a href="{{ url_for('group.create') }}">{% trans %}Do you want to create one?{% endtrans %}
|
|
{% endfor %}
|
|
{% endblock content %}
|