forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaterials_editable_groups.html
More file actions
33 lines (33 loc) · 1.37 KB
/
materials_editable_groups.html
File metadata and controls
33 lines (33 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "base.html" %}
{# Copyright The IETF Trust 2016-2019, All Rights Reserved #}
{% load origin %}
{% load ietf_filters managed_groups group_filters %}
{% block title %}IETF {{ meeting_num }} meeting materials that you can edit{% endblock %}
{% block content %}
<h1 class="mb-3">IETF {{ meeting_num }} meeting materials that you can edit</h1>
{% if user and user.is_authenticated %}
<ul>
{% with user|matman_groups as user_groups %}
{% if user_groups %}
{% for g in user_groups %}
<li>
{% if g|has_sessions:meeting_num %}
<a href="{% url 'ietf.meeting.views.session_details' num=meeting_num acronym=g.acronym %}">{{ g.acronym }}</a>
{% else %}
{{ g.acronym }} <span class="badge bg-info ms-2">No session requested</span>
{% endif %}
</li>
{% endfor %}
{% else %}
<p>
You cannot manage the meeting materials for any groups.
</p>
{% endif %}
{% endwith %}
</ul>
{% else %}
<p>
You cannot manage the meeting materials for any groups.
</p>
{% endif %}
{% endblock %}