{% extends 'base.html' %} {% load i18n fontawesome_5 %} {% block head %} {% comment %} dal documentation (django-autocomplete-light) states using form.media for adding needed scripts. This does not work properly with modal forms, as the scripts are not loaded properly inside the modal. Therefore the script linkages from form.media have been extracted and put inside dal/scripts.html to ensure these scripts are loaded when needed. {% endcomment %} {% include 'dal/scripts.html' %} {% endblock %} {% block body %}
{% trans 'Name' %} | {% trans 'Description' %} | {% trans 'Members' %} | {% trans 'Administrator' %} | {% trans 'Action' %} |
---|---|---|---|---|
{{team.name}} |
{{team.description}}
|
{% for member in team.users.all %} {{member.username}} {% endfor %} | {% for admin in team.admins.all %} {{admin.username}} {% endfor %} | {% if user in team.admins.all %} {% endif %} |