~pidgeon690/pidge-events/trunk

« back to all changes in this revision

Viewing changes to Apps/basic/templates/basic-feedback

  • Committer: Fergus Ross Ferrier
  • Date: 2009-05-26 15:09:25 UTC
  • Revision ID: hello@fergusrossferrier.co.uk-20090526150925-695q8cy20mahagdw
Split events to separate app and repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends "base" %}
2
 
{% load basic_extras %}
3
 
{% block title %}Send Feedback{% endblock %}
4
 
{% block content %}
5
 
 
6
 
 
7
 
<div class='mp-box' style='float: left;'>
8
 
<link rel="stylesheet" type="text/css" href="/resources/form.css" />
9
 
<h3>Send Your Feedback</h3>
10
 
{{ debugmsg }}
11
 
<div class='mp-form'>
12
 
<form action="." method="POST">
13
 
{% if loggedin %}
14
 
<p><label>Your Email Address</label>{{ useremail }}</p>
15
 
{% endif %}
16
 
{{ form.as_p }}
17
 
<input type="submit" class='mp-form-button' value="Send Feedback Now" />
18
 
</form>
19
 
</div>
20
 
</div>
21
 
 
22
 
 
23
 
<div class='mp-box' style='float: right;'>
24
 
<h3>Feedback is Important</h3>
25
 
<p>This is a volunteer project with the goal of helping to share information across Cambridge.</p>
26
 
<p>We really do appreciate your feedback and will endeavour to use as many suggestions as possible, and reply to all messages. </p>
27
 
<p>If you are experiencing a problem with the web site, our apologies. We'll try and help you / rectify the problem as soon as possible.</p>
28
 
</div>
29
 
<link rel="stylesheet" type="text/css" href="/resources/events.css" />
30
 
 
31
 
{% endblock %}