Implement a new type of note (see #45)
This commit is contained in:
parent
c8854cf45d
commit
c384ee02eb
14 changed files with 326 additions and 21 deletions
16
templates/note/noteactivity_form.html
Normal file
16
templates/note/noteactivity_form.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{% extends "member/noteowner_detail.html" %}
|
||||
|
||||
{% load i18n %}
|
||||
{% load crispy_forms_tags %}
|
||||
|
||||
{% block profile_info %}
|
||||
{% include "member/club_info.html" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block profile_content %}
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{{ form|crispy }}
|
||||
<button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue