annotate gpp/templates/bio/avatar.html @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +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 %}