我想在Django管理页面的必填字段中添加星号。 我在forms.py中添加了required_css_class ='requried'。 并将extrastyle添加到task_change_form.html。
{% block extrastyle %}
{{ block.super }}
<style type="text/css">
/* add an asterisk using CSS */
.required::after {
content: "*";
}
</style>
{% endblock %}
我怎么了?