First step of the groups subapp, view groups and request access done

This commit is contained in:
2010-10-21 16:27:47 +01:00
parent 3b568f3156
commit f555e85e3d
14 changed files with 332 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block title %}Create a Membership Request{% endblock %}
{% block content %}
<p>Please fill in a reason why you like to be a member of this group and any supporting evidence as requested by the group adminship</p>
<form action="{% url groups.views.create_request groupid %}" method="post">
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Create Request" />
</form>
{% endblock %}