Mercurial > public > sg101
view user_photos/admin.py @ 696:b2a8fde3173a
Got the image resizing and uploading working. It needs a lot of work though.
This commit is just to capture something that works.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 08 Sep 2013 19:06:54 -0500 |
parents | 2d35e5f97a99 |
children | d7a0aaabc06c |
line wrap: on
line source
"""Admin definitions for the user_photos application.""" from django.contrib import admin from user_photos.models import Photo class PhotoAdmin(admin.ModelAdmin): date_hierarchy = 'upload_date' ordering = ['-upload_date'] raw_id_fields = ['user'] search_fields = ['user__username', 'user__email'] admin.site.register(Photo, PhotoAdmin)