pedagogy: basic display of the guide

This commit is contained in:
Antoine Bartuccio 2019-07-05 18:16:28 +02:00
parent 3063e4a24f
commit 2aa1314fac
Signed by: klmp200
GPG Key ID: E7245548C53F904B

View File

@ -6,7 +6,7 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<form id="search_form" action="{{ url('pedagogy:guide') }}" method="get"> <form id="search_form" action="{{ url('pedagogy:guide') }}" method="get">
<p> <p>
<input type="text" name="search"> <input type="text" name="search">
<button>{% trans %}Details{% endtrans %}</button> <button>{% trans %}Details{% endtrans %}</button>
@ -31,21 +31,41 @@
<input type="checkbox" name="semester" value="SPRING">P <input type="checkbox" name="semester" value="SPRING">P
<input type="checkbox" name="semester" value="AUTUMN_AND_SPRING"> <input type="checkbox" name="semester" value="AUTUMN_AND_SPRING">
</p> </p>
</form> </form>
{% if can_create_uv(user) %} {% if can_create_uv(user) %}
<p> <p>
<a href="{{ url('pedagogy:uv_create') }}">{% trans %}Create UV{% endtrans %}</a> <a href="{{ url('pedagogy:uv_create') }}">{% trans %}Create UV{% endtrans %}</a>
</p> </p>
<br>
{% endif %}
<table>
<thead>
<tr>
<td>{% trans %}UV{% endtrans %}</td>
<td>{% trans %}Title{% endtrans %}</td>
<td>{% trans %}Department{% endtrans %}</td>
<td>{% trans %}Credit type{% endtrans %}</td>
{% if can_create_uv(user) %}
<td>{% trans %}Edit{% endtrans %}</td>
<td>{% trans %}Delete{% endtrans %}</td>
{% endif %} {% endif %}
</tr>
</thead>
<tbody>
{% for uv in object_list %} {% for uv in object_list %}
<p> <tr>
<a href="{{ url('pedagogy:uv_detail', uv_id=uv.id) }}">{{ uv.code }}</a> <td><a href="{{ url('pedagogy:uv_detail', uv_id=uv.id) }}">{{ uv.code }}</a></td>
<td>{{ uv.title }}</td>
<td>{{ uv.department }}</td>
<td>{{ uv.credit_type }}</td>
{% if user.is_owner(uv) -%} {% if user.is_owner(uv) -%}
<a href="{{ url('pedagogy:uv_update', uv_id=uv.id) }}">{% trans %}Edit{% endtrans %}</a> <td><a href="{{ url('pedagogy:uv_update', uv_id=uv.id) }}">{% trans %}Edit{% endtrans %}</a></td>
<a href="{{ url('pedagogy:uv_delete', uv_id=uv.id) }}">{% trans %}Delete{% endtrans %}</a> <td><a href="{{ url('pedagogy:uv_delete', uv_id=uv.id) }}">{% trans %}Delete{% endtrans %}</a></td>
{%- endif -%} {%- endif -%}
</p> </tr>
{% endfor %} {% endfor %}
</tbody>
</table>
<script> <script>
@ -57,12 +77,12 @@
$(this).prop("checked", true); $(this).prop("checked", true);
}); });
} }
} }
if (urlParams.has("search")) if (urlParams.has("search"))
$("input[name='search']").first().prop("value", urlParams.get("search")); $("input[name='search']").first().prop("value", urlParams.get("search"));
autofillCheckboxRadio("department"); autofillCheckboxRadio("department");
autofillCheckboxRadio("credit_type"); autofillCheckboxRadio("credit_type");
autofillCheckboxRadio("semester"); autofillCheckboxRadio("semester");
// Allow unchecking a radio button when we click on it // Allow unchecking a radio button when we click on it
// Keep a state of what is checked // Keep a state of what is checked