django-dbfilestorage/dbfilestorage/admin.py
Tyrel Souza 4b7738c0f2
Python3 and Django 1.11 upgrade (#40)
* starting py3 upgrade

* b64 not base64

* more progress, some more future things, and encoding

* tox

* update circle.yml

* that version doesnt exist yet, oops

* install?

* sigh

* Docker me?

* update readme, requirements

* fix for python3

* python35

* morgan remediations

* does this work?

* how about this?

* one more time

* no blank lines?

* revert a bit

* add future imports
2018-03-01 15:32:02 -05:00

11 lines
259 B
Python

from __future__ import absolute_import, print_function, unicode_literals
from django.contrib import admin
from .models import DBFile
class DBFileAdmin(admin.ModelAdmin):
list_display = ('name', 'content_type')
admin.site.register(DBFile, DBFileAdmin)