22 lines
409 B
HTML
22 lines
409 B
HTML
{% extends "basedocumentation.html" %}
|
|
|
|
{% block title %}Donate{% endblock %}
|
|
|
|
{% block extra_extra_head %}
|
|
{% endblock %}
|
|
|
|
{% block doccontent %}
|
|
|
|
<h2>Donate</h2>
|
|
<p>Wonderful: We're glad that you would like to donate to our <b>partnering non-profit</b>.</p>
|
|
|
|
<form method="post" action="#">
|
|
{% csrf_token %}
|
|
{{form.as_p}}
|
|
<input type="submit" value="Donate" />
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
|