forked from DGNum/gestioCOF
c37754376b
The `registration` view was referencing this file using `"gestioncof/registration_form.html"` whereas the `registration_post` templated was referencing it in the global namespace `"registration_form.html"`. We choose the `gestioncof/` folder in order to avoid further conflicts with other apps.
8 lines
230 B
HTML
8 lines
230 B
HTML
{% extends "base_title.html" %}
|
|
|
|
{% block realcontent %}
|
|
<h2>Inscription d'un nouveau membre</h2>
|
|
<div id="form-placeholder">
|
|
{% include "gestioncof/registration_form.html" %}
|
|
</div>
|
|
{% endblock %}
|