我想为我的一些模型自定义Django admin change_form. html模板。我想增加字段标签的大小并尝试覆盖change_form. html模板。但是它不起作用。
显示我自己的change_form. html,但未应用css样式。
当我打开调试时,change_form.js出现了一个错误:django is not defined
change_form.html
{% extends "admin/change_form.html" %}
{% load static %}
{% block extrahead %}
<!-- Custom -->
<link rel="stylesheet" href="{% static 'ecrf/css/custom_change_form.css' %}">
{% endblock %}
custom_change_form.css
// pat is one of my field
.column-pat {
color: red !important;
min-width: 200px;
}
admin.py
class VisiteAdmin(SimpleHistoryAdmin):
list_display = ('pat','vis_dat',timing_visit,'sai_log','sai_dat','ver','ver_usr','ver_dat')
change_form_template = 'ecrf/admin/change_form.html'
1条答案
按热度按时间wz8daaqr1#
您错过了
block.super
: