28 lines
896 B
HTML
28 lines
896 B
HTML
{% extends "base.dj.html" %}
|
|
|
|
{% load render_table from django_tables2 %}
|
|
|
|
{% block title %}Event Attendees{% endblock %}
|
|
{% block admin_link %}
|
|
{% url 'admin:membershipworks_eventext_changelist' %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<form method="get" class="container-fluid">
|
|
<div class="row g-2 align-items-center">
|
|
<div class="col-auto">
|
|
<div class="form-floating">
|
|
<input type="date"
|
|
class="form-control"
|
|
id="newSince"
|
|
name="new_since"
|
|
value="{{ filter.form.new_since.value }}">
|
|
<label for="newSince">New Since</label>
|
|
</div>
|
|
</div>
|
|
<button class="btn btn-primary col-auto" type="submit">Filter</button>
|
|
<div class="col-auto">{% include "cmsmanage/components/download_table.dj.html" %}</div>
|
|
</div>
|
|
</form>
|
|
{% render_table table %}
|
|
{% endblock %}
|