This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/attachments/admin.py

30 lines
735 B
Python
Raw Normal View History

2020-08-26 19:04:48 +02:00
from django.contrib import admin
from django.contrib.admin import register
from attachments.models import Attachment
@register(Attachment)
class AttachmentAdmin(admin.ModelAdmin):
2020-08-28 21:49:15 +02:00
list_display = [
"description",
"original_file",
"original_file_url",
"processed_file",
"processed_file_url",
]
2020-08-26 19:04:48 +02:00
list_display_links = ["description"]
2020-08-28 21:49:15 +02:00
class Media:
js = ["attachments/js/copy_url.js"]
def processed_file_url(self, instance):
2020-08-28 21:58:18 +02:00
if instance.processed_file:
return instance.processed_file.url
return ""
2020-08-28 21:49:15 +02:00
def original_file_url(self, instance):
2020-08-28 21:58:18 +02:00
if instance.original_file:
return instance.original_file.url
return ""