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