diff options
author | luxagraf <sng@luxagraf.net> | 2020-12-02 15:02:12 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-12-02 15:02:12 -0500 |
commit | ab8055b5cab2523d925f59c65bc38df103a26991 (patch) | |
tree | 29e4597bc0d86d658f574c0c4f0b036351a68742 /app/unused_apps/stuff/admin.py | |
parent | 87f692178a6e30719c564076f00c206642f36ce6 (diff) |
deleted old apps and media
Diffstat (limited to 'app/unused_apps/stuff/admin.py')
-rw-r--r-- | app/unused_apps/stuff/admin.py | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/app/unused_apps/stuff/admin.py b/app/unused_apps/stuff/admin.py deleted file mode 100644 index 135b17b..0000000 --- a/app/unused_apps/stuff/admin.py +++ /dev/null @@ -1,56 +0,0 @@ -from django.contrib import admin -from .models import Item - - -@admin.register(Item) -class ItemAdmin(admin.ModelAdmin): - list_display = ( - 'title', - 'admin_thumbnail', - 'item_type', - 'creator', - 'purchase_price', - 'item_format', - 'isbn' - ) - list_filter = ['item_format', 'item_type'] - - fieldsets = ( - ('Item', { - 'fields': ( - 'title', - ('date_purchased', 'date_added'), - 'item_format', - 'purchase_price', - 'image', - 'item_type', - 'creator', - 'serial_number', - 'isbn', - ), - 'classes': ( - 'show', - 'extrapretty', - 'wide' - ) - } - ), - ('Extra', { - 'fields': ( - 'creator_sort_last_name', - 'creator_sort_first_name', - 'current_price', - 'retail_price', - 'amazon_url', - 'image_url', - ), - 'classes': ( - 'collapse', - 'extrapretty', - 'wide' - ) - }), - ) - - class Media: - js = ('image-loader.js', 'next-prev-links.js') |