mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
15 lines
349 B
HTML
15 lines
349 B
HTML
{% extends "admin/base_site.html" %}
|
|
{% load static %}
|
|
{% block content %}
|
|
{{ block.super }}
|
|
<div class='container mx-auto'>
|
|
<h1>Generate Report</h1>
|
|
<div>
|
|
<form action="">
|
|
{{ form.as_p }}
|
|
<input name="submit" value="Submit" class="default" type="submit" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|