A Django app for handling user avatars.
Find a file
Arne Holzenburg 341732a38c Transpose based on EXIF orientation
Transpose the original image before resizing based on EXIF orientation
information to display image in the correct orientation. If someone
uploads an image from an iPhone (for example) the image is currently
often rendered in the wrong orientation.
2017-07-11 14:42:55 +02:00
avatar Transpose based on EXIF orientation 2017-07-11 14:42:55 +02:00
docs Update changelog for 4.0.0 2017-05-27 09:43:23 -05:00
test_proj Add test project for debugging 2016-09-03 10:47:01 -05:00
tests Fix test for avatar tag. 2017-05-27 09:50:47 -05:00
.coveragerc Fixed migrations path in .coveragerc. 2016-05-26 00:21:38 +05:00
.gitignore Add test project for debugging 2016-09-03 10:47:01 -05:00
.travis.yml Update testing matrix 2017-05-27 09:47:16 -05:00
CHANGELOG.rst Update version 4.0.0 changelog 2017-05-27 09:55:23 -05:00
CONTRIBUTORS.txt Update maintainer 2015-08-10 09:37:28 -05:00
LICENSE.txt Initial version. 2008-08-01 09:27:59 +00:00
Makefile Remove branch coverage 2015-09-24 13:45:04 -05:00
MANIFEST.in Revamped tests and added Travis config. 2013-08-01 13:12:49 +02:00
README.rst Update README.rst 2017-04-14 09:34:27 -05:00
setup.py Update PyPI classifiers 2017-05-27 09:47:48 -05:00

=============
django-avatar
=============

.. image:: https://badge.fury.io/py/django-avatar.svg
    :target: https://badge.fury.io/py/django-avatar
    :alt: PyPI badge

.. image:: https://readthedocs.org/projects/django-avatar/badge/?version=latest
    :target: http://django-avatar.readthedocs.org/en/latest/?badge=latest
    :alt: Documentation Status

.. image:: https://travis-ci.org/grantmcconnaughey/django-avatar.svg?branch=master
    :target: https://travis-ci.org/grantmcconnaughey/django-avatar
    :alt: Travis CI Build Status

.. image:: https://coveralls.io/repos/grantmcconnaughey/django-avatar/badge.svg?branch=master&service=github
    :target: https://coveralls.io/github/grantmcconnaughey/django-avatar?branch=master
    :alt: Coverage

.. image:: https://lintly.com/gh/grantmcconnaughey/django-avatar/badge.svg
    :target: https://lintly.com/gh/grantmcconnaughey/django-avatar/
    :alt: Lintly

Django-avatar is a reusable application for handling user avatars.  It has the
ability to default to Gravatar if no avatar is found for a certain user.
Django-avatar automatically generates thumbnails and stores them to your default
file storage backend for retrieval later.

For more information see the documentation at http://django-avatar.readthedocs.org/