first commit1

This commit is contained in:
ajay
2023-05-09 14:18:41 +05:30
commit 01f3d0939a
20 changed files with 596 additions and 0 deletions

38
templates/Input.html Normal file
View 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>