Added missing CSRF tokens

This commit is contained in:
2011-08-26 15:41:03 +01:00
parent 2428987e53
commit 00d28d26cf
2 changed files with 2 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
<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> <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"> <form action="{% url groups.views.create_request groupid %}" method="post">
{% csrf_token %}
<table> <table>
{{ form.as_table }} {{ form.as_table }}
</table> </table>

View File

@@ -5,6 +5,7 @@
{% block content %} {% block content %}
<h1>User Lookup</h1> <h1>User Lookup</h1>
<form action="{% url sso.views.user_lookup %}" method="post"> <form action="{% url sso.views.user_lookup %}" method="post">
{% csrf_token %}
<table> <table>
{{ form.as_table }} {{ form.as_table }}
</table> </table>