我使用django-photologue
并对其进行了扩展:
# gallery.models.py
from photologue.models import Photo
from profiles.models import UserProfile
class PhotoExtended(Photo):
user = models.ForeignKey(UserProfile, verbose_name=_('user'), on_delete=models.CASCADE)
# gallery.admin.py
from photologue.admin import PhotoAdmin as PhotoAdminDefault
from photologue.models import Photo
from .models import PhotoExtended
class PhotoAdmin(PhotoAdminDefault):
save_on_top = True
admin.site.unregister(Photo)
admin.site.register(PhotoExtended, PhotoAdmin)
Photologue
具有上传包含照片的zip文件的功能,可以使用管理员中的其他按钮完成。我改变后,这个按钮就消失了。
是否可以使用原生photologue
的管理模板,以避免将它们复制粘贴到我应用的模板文件夹中?在INSTALLED_APPS
photologue
高于我的gallery
应用
Here有photologue
个管理模板。
答案 0 :(得分:0)
在路径templates/admin/photologue/photo/change_list.html
中,部分photo
对应于Photo
模型。你继承了那个模型。新模型名称为PhotoExtended
,但templates/admin/photologue/photo_extend/change_list.html
中没有模板。
将change_list.html
从photologue app复制到您自己的(app)模板文件夹中。例如:project/app/templates/admin/photologue/photo_extend/change_list.html
。
或者您也可以创建一个新文件并使用包含旧模板:
# project/app/templates/admin/photologue/photo_extend/change_list.html
{% include 'admin/photologue/photo/change_list.html' %}
更新:另一种方法是设置(其中一个)BaseModelAdmin属性:
# Custom templates (designed to be over-ridden in subclasses)
add_form_template = None
change_form_template = None
change_list_template = None
delete_confirmation_template = None
delete_selected_confirmation_template = None
object_history_template = None