2011-12-29 04:17:39 +00:00
|
|
|
{% extends "basedocumentation.html" %}
|
2012-03-12 17:18:11 +00:00
|
|
|
{% block extra_css %}
|
|
|
|
<style type="text/css">
|
|
|
|
#id_subject, #id_recipient {
|
|
|
|
float: right;
|
|
|
|
width: 75%;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#id_message {
|
|
|
|
width: 75%;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=submit] {
|
|
|
|
float: right;
|
|
|
|
margin: 7px 0px auto 0px;;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|
2011-12-29 01:43:52 +00:00
|
|
|
|
|
|
|
{% block title %}Pledge{% endblock %}
|
|
|
|
|
2011-12-29 04:17:39 +00:00
|
|
|
{% block doccontent %}
|
2011-12-29 01:43:52 +00:00
|
|
|
|
|
|
|
<form method="POST" action="/emailshare/">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form.as_p }}
|
2012-04-16 19:28:06 +00:00
|
|
|
<div class="clearfix"></div><input type="submit" value="Share" />
|
2011-12-29 01:43:52 +00:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|