22 lines
539 B
HTML
22 lines
539 B
HTML
{% extends "members/base.html" %}
|
|
|
|
{% load bootstrap3 %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h3>{% trans "Add member" %}</h3>
|
|
|
|
<div id="input_form">
|
|
<form name="memberForm" action="/members/submit_member" method="post" class="form">{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">
|
|
{% trans "Save" %}
|
|
</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|