{% extends 'django_dynamic_views/dynamic_list_view.html' %} {% load get_attribute %} {% block list-tablehead-after-row %} {% if links %} {% for link in object_links%}{% endfor %} {% endif %} {% endblock %} {% block list-tablebody %} {% for object in object_list %} {% block list-row %} {{ block.super }} {% endblock %} {% block action_buttons %} {% if object_links %} {% for link in object_links %} {% with link_names|get_attribute:link as link_name %} {{ link }} {% endwith %} {% endfor %} {% endif %} {% endblock %} {% endfor %} {% endblock %}