Merged in [11479] from rcross@amsl.com:

Remove references to non-existent views from templates.
 - Legacy-Id: 11481
Note: SVN reference [11479] has been migrated to Git commit cbcdbaa46c
This commit is contained in:
Henrik Levkowetz 2016-06-28 04:42:29 +00:00
parent 081eacae6a
commit a0414bed7a
8 changed files with 0 additions and 180 deletions

View file

@ -1,51 +0,0 @@
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Proceedings - Convert Materials{% endblock %}
{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
&raquo; <a href="../../">Proceedings</a>
&raquo; <a href="../">{{ meeting.meeting_num }}</a>
&raquo; Convert Material
{% endblock %}
{% block content %}
<div class="module">
<form action="." method="post">{% csrf_token %}
<h2>Proceedings - PPT/DOC Files in Queue</h2>
<table class="full-width">
<thead>
<tr>
<th>Slide Name</th>
<th>Group</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
{% for slide in slide_list %}
<tr class = "{% cycle 'row1' 'row2' %}">
<td>{{ slide.slide_name }}</td>
<td>{{ slide.group_name }}</td>
<td><a href="{{ MEDIA_URL }}proceedings/{{ meeting.meeting_num }}/slides/{{ slide.filename }}">Download</a></td>
<td><a href="{% url "sec.proceedings.views.upload_presentation" id=meeting.meeting_num slide_id=slide.id %}">Upload</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</form>
<div class="button-group">
<ul>
<li><button onclick="window.location='../'">Back</button></li>
</ul>
</div> <!-- button-group -->
</div> <!-- module -->
{% endblock %}

View file

@ -9,8 +9,6 @@
{% block breadcrumbs %}{{ block.super }}
{% if meeting.type_id == "interim" %}
&raquo; <a href="{% url "proceedings" %}">Proceedings</a>
&raquo; <a href="{% url "proceedings_select_interim" %}">Interim Select Group</a>
&raquo; <a href="{% url "proceedings_interim" acronym=group.acronym %}">{{ group.acronym }}</a>
&raquo; <a href="{% url "proceedings_upload_unified" meeting_num=meeting.number acronym=group.acronym %}">{{ meeting }}</a>
&raquo; {{ slide.title }}
{% else %}

View file

@ -17,8 +17,6 @@
{% block breadcrumbs %}{{ block.super }}
{% if meeting.type_id == "interim" %}
&raquo; <a href="{% url "proceedings" %}">Proceedings</a>
&raquo; <a href="{% url "proceedings_select_interim" %}">Interim Select Group</a>
&raquo; <a href="{% url "proceedings_interim" acronym=group.acronym%}">{{ group.acronym }}</a>
&raquo; {{ meeting }}
{% else %}
&raquo; <a href="{% url "proceedings" %}">Proceedings</a>

View file

@ -9,8 +9,6 @@
{% block breadcrumbs %}{{ block.super }}
{% if meeting.type_id == "interim" %}
&raquo; <a href="{% url "proceedings" %}">Proceedings</a>
&raquo; <a href="{% url "proceedings_select_interim" %}">Interim Select Group</a>
&raquo; <a href="{% url "proceedings_interim" acronym=group.acronym%}">{{ group.acronym }}</a>
&raquo; {{ meeting }}
&raquo; <a href="{% url "proceedings_recording" meeting_num=meeting.number %}">Recording</a>
&raquo; {{ recording.name }}

View file

@ -9,8 +9,6 @@
{% block breadcrumbs %}{{ block.super }}
{% if meeting.type_id == "interim" %}
&raquo; <a href="{% url "proceedings" %}">Proceedings</a>
&raquo; <a href="{% url "proceedings_select_interim" %}">Interim Select Group</a>
&raquo; <a href="{% url "proceedings_interim" acronym=group.acronym %}">{{ group.acronym }}</a>
&raquo; <a href="{% url "proceedings_upload_unified" meeting_num=meeting.number acronym=group.acronym %}">{{ meeting }}</a>
&raquo; {{ slide.title }}
{% else %}

View file

@ -1,31 +0,0 @@
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Roles{% endblock %}
{% block extrahead %}{{ block.super }}
<link rel="stylesheet" type="text/css" href="{% static 'secr/css/jquery-ui-1.11.4.custom.css' %}" />
<script type="text/javascript" src="{% static 'secr/js/jquery-ui-1.11.4.custom.min.js' %}"></script>
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
&raquo; <a href="../">Roles</a>
{% endblock %}
{% block content %}
<div id="nav" class="role-nav">
<ul id="list-nav">
<li id="nav-ietf" class="leftmost"><a href="{% url "roles_chair" type='ietf' %}">IETF</a></li>
<li id="nav-iab"><a href="{% url "roles_chair" type='iab' %}">IAB</a></li>
<li id="nav-nomcom"><a href="{% url "roles_chair" type='nomcom' %}">NOMCOM</a></li>
<li id="nav-liaisons"><a href="{% url "roles_liaisons" %}">Liaisons Members</a></li>
</ul>
</div>
{% block subsection %}{% endblock %}
{% endblock %}

View file

@ -1,51 +0,0 @@
{% extends "roles/base_roles.html" %}
{% block subsection %}
<div class="module">
<h2>{{ type }} Chairs</h2>
<table class="full-width">
<thead>
<tr>
<th>Role</th>
<th>Name</th>
<th>Email</th>
<th>Action</th>
</tr>
</thead>
<tbody>
{% for role in group.role_set.all %}
<tr class="{% cycle row1,row2 %}">
<td>{{ role.name }}</td>
<td>{{ role.person }}</td>
<td>{{ role.email }}</td>
<td><a href="{% url "roles_delete_role" type=type id=role.id %}">Delete</a></td>
</tr>
{% endfor %}
</tbody>
</table>
<div class="inline-related">
<!-- <hr><br> -->
<h3>Add Role</h3>
<form id="groups-people" action="" method="post">{% csrf_token %}
{{ form.non_field_errors }}
<table class="full-width">
<tr>
<td>{{ form.name.errors }}{{ form.name }}</td>
<td>{{ form.person.errors }}{{ form.person }}{% if form.person.help_text %}<br>{{ form.person.help_text }}{% endif %}</td>
<td>{{ form.email.errors }}{{ form.email }}{% if form.email.help_text %}<br>{{ form.email.help_text }}{% endif %}</td>
<td><input type="submit" name="submit" value="Add" /></td>
</tr>
</table>
</form>
</div> <!-- inline-related -->
<div class="button-group">
<ul>
<li><button onclick="window.location='../'">Back</button></li>
</ul>
</div> <!-- button-group -->
</div> <!-- module -->
{% endblock %}

View file

@ -1,39 +0,0 @@
{% extends "roles/base_roles.html" %}
{% block subsection %}
<div class="module role-container">
<h2>Liaisons Managers</h2>
<table class="full-width">
{% for liaison in liaisons %}
<tr>
<form action="." method="post">{% csrf_token %}
<input type="hidden" name="liaison-tag" value="{{ liaison.person.person_or_org_tag }}"
<td><a href="{% url "sec.rolodex.views.view" tag=liaison.person.person_or_org_tag %}">{{ liaison.person.first_name }} {{ liaison.person.last_name }}</a></td>
<td>{{ liaison.person.affiliation }}</td>
<td>{{ liaison.affiliation }} Liaison</td>
<td><button type="submit" name="submit" value="Delete" onclick="return window.confirm('You are about to delete {{ liaison.person.first_name }} {{ liaison.person.last_name }} from the list.');">Delete</button>
</form>
</tr>
{% endfor %}
</table>
<div class="inline-related">
<h3><b>Add new Liaison</b></h3>
<p>
<form action="." method="post">{% csrf_token %}
<table class="center">
{{ form.as_table }}
</table>
</div> <!-- iniline-related -->
<div class="button-group">
<ul>
<li><button type="submit" name="submit" value="Add">Add</button></li>
</ul>
</div> <!-- button-group -->
</form>
</div> <!-- module -->
{% endblock %}