Skip to content

Commit

Permalink
fix: Make attendee table sortable (#5824)
Browse files Browse the repository at this point in the history
Fixes #5606
  • Loading branch information
larseggert committed Jun 14, 2023
1 parent 518aedb commit a3d9cf3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ietf/templates/meeting/proceedings_attendees.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin markup_tags %}
{% load origin markup_tags static %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}IETF {{ meeting.number }} proceedings{% endblock %}
{% block content %}
{% origin %}
Expand All @@ -12,4 +15,7 @@ <h1>
</h1>
<h2>Attendee list of IETF {{ meeting.number }} meeting</h2>
{{ template|safe }}
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}

0 comments on commit a3d9cf3

Please sign in to comment.