38 lines
703 B
HTML
38 lines
703 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% load static %}
|
|
{% load material_form %}
|
|
<head>
|
|
{% include 'material/includes/material_css.html' %}
|
|
{% include 'material/includes/material_js.html' %}
|
|
</head>
|
|
|
|
<style>
|
|
@media print {
|
|
.noprint {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
|
|
<div style="margin-left:3%;margin-top:1%">
|
|
<h5>{{ Title }}</h5>
|
|
|
|
<div class="noprint">
|
|
<form action='' method='post'>{% csrf_token %}
|
|
{% form form=form %}{% endform %}
|
|
<input type='submit' value='Submit'/>
|
|
</form>
|
|
</div>
|
|
|
|
<br>
|
|
<div class="column-list"></div>
|
|
<div class="Summary">
|
|
{{ DF_1|safe }}
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |