first commit1
This commit is contained in:
38
templates/Input.html
Normal file
38
templates/Input.html
Normal file
@@ -0,0 +1,38 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user