mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-12-30 21:02:23 +00:00
14 lines
244 B
HTML
14 lines
244 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load django_tables2 i18n %}
|
|
|
|
{% block contenttitle %}
|
|
<h1>{% trans "All teams" %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="form-content">
|
|
{% render_table table %}
|
|
</div>
|
|
{% endblock %}
|