NDOJ/templates/organization/requests/request.html

23 lines
713 B
HTML
Raw Normal View History

2022-05-30 06:59:53 +00:00
{% extends "organization/home-base.html" %}
2020-01-21 06:35:58 +00:00
2022-05-30 06:59:53 +00:00
{% block org_js %}
2020-01-21 06:35:58 +00:00
<script type="text/javascript">
$(function () {
$('#id_reason').keydown(function (e) {
if (e.ctrlKey && (e.keyCode === 13 || e.keyCode === 10)) {
$(this).closest('form').submit();
}
});
});
</script>
{% endblock %}
2022-05-30 06:59:53 +00:00
{% block middle_content %}
2020-01-21 06:35:58 +00:00
<form action="" method="post" class="form-area">
{% csrf_token %}
<p><label for="{{ form.reason.id_for_label }}"><b>{{ _('Your reason for joining:') }}</b></label></p>
<p>{{ form.reason }}</p>
<button type="submit">{{ _('Request') }}</button>
</form>
{% endblock %}