72 lines
2.3 KiB
HTML
72 lines
2.3 KiB
HTML
{% 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 %}
|
|
|
|
<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>
|
|
<td><input type="text" name="pdftype" value="Meeting Minutes" readonly></td>
|
|
</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 %} |