{% extends 'base.html' %} {% load static %} {% block page-subtitle %}Outwork ‖ {% endblock %} {% block page-context-id %}outwork-list{% endblock %} {% block header_class %}mdl-layout__header--transparent{% endblock %} {% block content %} {% include 'components/search-form-header-init.html' %}
{% for outwork in object_list %} {% include 'outwork/components/outwork-list-item.html' with outwork=outwork %} {% empty %} {% include 'components/search-results-empty.html' %} {% endfor %}
{% if is_paginated %} {% include "components/page-pagination.html" with page_obj=page_obj %} {% endif %}
{% endblock %}