resolution-archive/templates/resulation/resulation.html

72 lines
2.3 KiB
HTML
Raw Permalink Normal View History

2025-01-26 11:22:57 +06:00
{% extends "base.html" %}
{% block content %}
{% if message %}
<div class="alert alert-success" style="background-color: #d4edda; color: #155724; padding: 15px; margin: 10px 0; border-radius: 4px; border: 1px solid #c3e6cb;">
{{ message }}
</div>
{% endif %}
2025-02-24 16:30:01 +06:00
2025-01-26 11:22:57 +06:00
<div class="form-container">
<h3 class="form-title">Fill up the form and upload your resolutions</h3>
<form action="{% url "resulation" %}" method="POST" enctype="multipart/form-data">
<table class="form-table">
<tr>
<th>Type of Upload</th>
2025-01-30 13:07:48 +06:00
<td><input type="text" name="pdftype" value="Meeting Minutes" readonly></td>
2025-01-26 11:22:57 +06:00
</tr>
<tr>
<th>Name of organization</th>
<td><input type="text" name="org_unit" required></td>
</tr>
<tr>
<th>Topic</th>
<td><input type="text" name="topic" required></td>
</tr>
<tr>
<th>Title of the Meeting</th>
<td><input type="text" name="tittle" required></td>
</tr>
<tr>
<th>Meeting Number</th>
<td><input type="text" name="m_number" required></td>
</tr>
<tr>
<th>Meeting Date</th>
<td><input type="date" name="m_date" required></td>
</tr>
<tr>
<th>Meeting Venue</th>
<td><input type="text" name="m_venue" required></td>
</tr>
<tr>
<th>Upload attendance sheet</th>
<td class="file-input-wrapper">
<input type="file" name="attendance_file" required>
</td>
</tr>
<tr>
<th>Upload Resolution</th>
<td class="file-input-wrapper">
<input type="file" name="res_con_mou_file" required>
</td>
</tr>
<tr>
<th></th>
<td style="text-align: center;">
{% csrf_token %}
<input type="submit" value="Submit" class="submit-btn">
</td>
</tr>
</table>
</form>
</div>
{% endblock content %}