source: asadb/template/groups/group_change_main.html

space-accessstablestage
Last change on this file was 4752b74, checked in by Alex Dehnert <adehnert@…>, 13 years ago

Update crufty instructions a bit

  • Property mode set to 100644
File size: 669 bytes
Line 
1{% extends "base.html" %}
2{% load form_utils_tags %}
3
4{% block title %}{{group.name}}: Change main information {% endblock %}
5{% block content %}
6
7<h1>{{group.name}}: Change main information</h1>
8
9{% include "groups/group_tools.part.html" %}
10
11<p>Please make sure to keep the information about your group up-to-date. As always, if you have trouble (or need to update a field that you don't have access to), please <a href='mailto:asa-exec@mit.edu'>contact us</a>.</p>
12
13{% if msg %}
14<p>{{msg}}</p>
15{% endif %}
16
17<form enctype="multipart/form-data" method="post" action="">
18{% csrf_token %}
19{{ form|render }}
20<input type='submit' value='Update' />
21</form>
22
23
24{% endblock %}
Note: See TracBrowser for help on using the repository browser.