datatracker/ietf/templates/iesg/ietf_activity_report.html
Lars Eggert 9d5d9d5172
fix: replace deprecated bootstrap things (#5858)
* text-muted -> text-body-secondary

* navbar-dark is deprecated

* Remove FIXME block, not an issue anymore

* Remove `navbar-light`
2023-07-18 12:22:28 -05:00

25 lines
866 B
HTML

{% extends "base.html" %}
{% load ams_filters ietf_filters django_bootstrap5 %}
{% block title %}IETF Activity Report{% endblock %}
{% block content %}
<h1 class="mt-3">IETF Activity Report</h1>
<h2 class="mt-3"><small class="text-body-secondary">{{ sdate|date:"F Y" }}</small></h2>
<form action="." method="GET">
<div class="row">
<div class="col-2">
{% bootstrap_field form.month show_label=True layout="inline" %}
</div>
<div class="col-2">
{% bootstrap_field form.year layout="inline" %}
</div>
<div class="col-2">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
<h3 class="mt-3">Draft Activity</h3>
{% include "meeting/activity_report.html" %}
{% endblock %}