{% extends 'news/base.html' %} {% load bootstrap %} {% block pagetitle %}: News Management{% endblock pagetitle %} {% block breadcrumb_items %} {{ block.super }}
{% endblock %} {% block content %}Item | Publication date | Published? | On homepage? | Actions | {% for ni in newsitems %}
---|---|---|---|---|
{{ ni.headline }} | {{ ni.date }} | {% if ni.published %}{% include 'bi/check-square-fill.html' %}{% else %}{% include 'bi/x-square-fill.html' %}{% endif %} {{ ni.published|yesno:'Yes,No' }} | {% if ni.on_homepage %}{% include 'bi/check-square-fill.html' %}{% else %}{% include 'bi/x-square-fill.html' %}{% endif %} {{ ni.on_homepage|yesno:'Yes,No' }} | Update · Delete |