{% extends 'djangoadmin/base/body/index_admin.html' %} {% load crispy_forms_tags %} {% block body %} {% include "djangoadmin/widgets/alert.html" %}
{% csrf_token %}
{% if article_form.title.errors %} {% endif %} {{ article_form.title }}
{{ article_form.description }}
{{ article_form.shortlines }}
{{ article_form.content }}
{% endblock body %} {% block sidebar-right %}
{{ article_form.status.label }}
{{ article_form.status }}
{{ article_form.serial.label }}
{{ article_form.serial }}
{{ article_form.category.label }}
{{ article_form.category }}
{{ article_form.cover_image.label }}
{{ article_form.cover_image }}
Options
  • {{ article_form.verification }} {{ article_form.verification.label }}
  • {{ article_form.is_promote }} {{ article_form.is_promote.label }}
  • {{ article_form.is_trend }} {{ article_form.is_trend.label }}
{{ article_form.total_views.label }}
{{ article_form.total_views }}
{{ article_form.tags }}
{% endblock sidebar-right %}