annotate gpp/templates/bio/avatar.html @ 271:4746df47a538

Follow on to last rev (r292) for #126. Missed updating a shoutbox template. Also the repoze.timeago package uses UTC time by default. Change this to local time for now until we decide to switch over to UTC for everything.
author Brian Neal <bgneal@gmail.com>
date Sun, 26 Sep 2010 17:42:00 +0000
parents 6a5549c2efb5
children daa2916f5b34
rev   line source
gremmie@1 1 {% extends 'bio/base.html' %}
gremmie@1 2 {% load avatar_tags %}
gremmie@1 3 {% block title %}Change My Avatar{% endblock %}
gremmie@1 4 {% block content %}
gremmie@1 5 <h2>Change My Avatar</h2>
gremmie@1 6 <p>This is your current avatar:</p>
gremmie@1 7 <p>{% avatar user %}</p>
gremmie@1 8 <p>
gremmie@1 9 To change your avatar, upload a file using the form, below. You may leave the
gremmie@1 10 form blank to reset your avatar to the default.
gremmie@1 11 </p>
gremmie@1 12 <p>
gremmie@1 13 Your file must be a recognizable graphic file, such as jpeg, gif, png, etc.
gremmie@1 14 The maximum size of an avatar is 100 x 100 pixels. If your uploaded file is larger than
gremmie@1 15 this it will be scaled down to 100 x 100 pixels. For best results, please ensure your
gremmie@1 16 image is square.
gremmie@1 17 </p>
bgneal@194 18 <form enctype="multipart/form-data" method="POST" action=".">{% csrf_token %}
gremmie@1 19 {{ form.as_p }}
gremmie@1 20 <input type="submit" value="Update Avatar" />
bgneal@4 21 &nbsp;<a href="{% url bio-me %}">Cancel</a>
gremmie@1 22 </form>
gremmie@1 23 {% endblock %}