Initial commit
This commit is contained in:
commit
793bb6a488
182 changed files with 17153 additions and 0 deletions
24
templates/aemo/document_upload.html
Normal file
24
templates/aemo/document_upload.html
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row border-bottom mt-3 mb-3">
|
||||
<div class="col"><p class="lead">{{ view.titre_page }}</p></div>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-8">
|
||||
<form action="." method="post" enctype="multipart/form-data">
|
||||
{% csrf_token %}
|
||||
{{ form.non_field_errors }}
|
||||
<table class="table table-sm table-bordered mt-3 border-bottom">
|
||||
<thead class="table-light">
|
||||
<tr><th width="20%">{{ view.titre_formulaire }}</th><th></th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{ form.as_table }}
|
||||
</tbody>
|
||||
</table>
|
||||
{% include 'actions.html' %}
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue