Mercurial > public > sg101
annotate gpp/templates/bio/avatar.html @ 310:daa2916f5b34
Fixing 145; New url tag behavior (forwards compatibility) in Django 1.3.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 20 Jan 2011 04:03:48 +0000 |
parents | 6a5549c2efb5 |
children | 3c48a555298d |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'bio/base.html' %} |
bgneal@310 | 2 {% load url from future %} |
gremmie@1 | 3 {% load avatar_tags %} |
gremmie@1 | 4 {% block title %}Change My Avatar{% endblock %} |
gremmie@1 | 5 {% block content %} |
gremmie@1 | 6 <h2>Change My Avatar</h2> |
gremmie@1 | 7 <p>This is your current avatar:</p> |
gremmie@1 | 8 <p>{% avatar user %}</p> |
gremmie@1 | 9 <p> |
gremmie@1 | 10 To change your avatar, upload a file using the form, below. You may leave the |
gremmie@1 | 11 form blank to reset your avatar to the default. |
gremmie@1 | 12 </p> |
gremmie@1 | 13 <p> |
gremmie@1 | 14 Your file must be a recognizable graphic file, such as jpeg, gif, png, etc. |
gremmie@1 | 15 The maximum size of an avatar is 100 x 100 pixels. If your uploaded file is larger than |
gremmie@1 | 16 this it will be scaled down to 100 x 100 pixels. For best results, please ensure your |
gremmie@1 | 17 image is square. |
gremmie@1 | 18 </p> |
bgneal@194 | 19 <form enctype="multipart/form-data" method="POST" action=".">{% csrf_token %} |
gremmie@1 | 20 {{ form.as_p }} |
gremmie@1 | 21 <input type="submit" value="Update Avatar" /> |
bgneal@310 | 22 <a href="{% url 'bio-me' %}">Cancel</a> |
gremmie@1 | 23 </form> |
gremmie@1 | 24 {% endblock %} |