resolution-archive/templates/resulation/contract.html

51 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2025-01-26 11:22:57 +06:00
{% extends "base.html" %}
{% block content %}
2025-02-24 16:30:01 +06:00
2025-02-18 16:23:22 +06:00
<div class="form-container">
<h3 class="form-title">Fill up the form and upload Contract</h3>
<form action="{% url "deed" %}" method="POST" enctype="multipart/form-data">
<table class="form-table">
2025-01-26 11:22:57 +06:00
<tr>
2025-02-18 16:23:22 +06:00
<th align="left">Type of Upload</th>
<td><input type="text" name="pdftype" value="Contract" readonly></td>
2025-01-26 11:22:57 +06:00
</tr>
<tr>
2025-02-18 16:23:22 +06:00
<th align="left">Contract Name</th>
<th><input type="text", name="topic"></th>
2025-01-26 11:22:57 +06:00
</tr>
<tr>
<th align="left">First Party</th>
<th><input type="text", name="first_party"></th>
</tr>
<tr>
2025-02-18 16:23:22 +06:00
<th align="left">Second Party</th>
<th><input type="text", name="second_party"></th>
2025-01-26 11:22:57 +06:00
</tr>
<tr>
2025-02-18 16:23:22 +06:00
<th align="left">Contract Signing Date</th>
<th><input type="Date", name="contract_date"></th>
2025-01-26 11:22:57 +06:00
</tr>
<tr>
2025-02-18 16:23:22 +06:00
<th align="left">Contract End Date</th>
2025-01-26 11:22:57 +06:00
<th><input type="Date", name="closing_date"></th>
</tr>
<tr>
<th align="left">Duration of Cotract</th>
2025-02-18 16:23:22 +06:00
<th><input type="text", name="duration"></th>
2025-01-26 11:22:57 +06:00
</tr>
2025-02-18 16:23:22 +06:00
<tr>
<tr>
<th align="left">Upload Contract</th>
<th><input type="file", name="res_con_mou_file"></th>
</tr>
<tr>
2025-01-26 11:22:57 +06:00
<th></th>
2025-02-18 16:23:22 +06:00
{% csrf_token %}
2025-01-26 11:22:57 +06:00
<th strong center><input Type="Submit">
2025-02-18 16:23:22 +06:00
</tr>
2025-01-26 11:22:57 +06:00
</table>
</form>
</div>
<br>
<br>
{% endblock content %}