forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 1.12 KB
/
Copy pathindex.html
File metadata and controls
31 lines (29 loc) · 1.12 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
{# Copyright The IETF Trust 2007-2025, All Rights Reserved #}
{% extends "base.html" %}
{% load static %}
{% load ietf_filters %}
{% block title %}Secretariat Dashboard{% endblock %}
{% block content %}
<h1>Secretariat Dashboard</h1>
<div class="secr-menu">
{% if user|has_role:"Secretariat" %}
<h2>IESG</h2>
<ul>
<li><a href="{% url 'ietf.secr.announcement.views.main' %}"><b>Announcement</b></a></li>
<li><a href="{% url 'ietf.secr.telechat.views.main' %}"><b>Telechat</b></a></li>
</ul>
<h2>IDs and WGs Process</h2>
<ul>
<li> <a href="{% url 'ietf.secr.rolodex.views.search' %}"><b>Rolodex</b></a></li>
</ul>
<h2>Meetings and Proceedings</h2>
<ul>
<li> <a href="{% url 'ietf.secr.meetings.views.main' %}"><b>Meeting Manager</b></a></li>
</ul>
{% else %}
<ul>
<li> <a href="{% url 'ietf.secr.announcement.views.main' %}"><b>Announcements</b></a></li>
</ul>
{% endif %}
</div>
{% endblock %}