{% load i18n %} {% load bloomerp %} {% for row in gant_rows %}
{{ row.object }}
{% for field in fields %}
{{ field.title }}: {% render_dataview_value object=row.object application_field=field user=request.user row_index=forloop.parentloop.counter0 column_index=forloop.counter0 url=row.object.get_absolute_url split_view_enabled=preference.split_view_enabled %}
{% endfor %}
{% if row.scheduled %}
{% if row.can_edit_start %} {% endif %} {{ row.object }} {% if row.can_edit_end %} {% endif %}
{% else %}
{% blocktrans %}Start or end date is missing.{% endblocktrans %}
{% endif %}
{% empty %} {% if not page_obj or page_obj.number == 1 %}
{% blocktrans %}No scheduled records.{% endblocktrans %}
{% blocktrans %}Drop an unscheduled record here.{% endblocktrans %}
{% endif %} {% endfor %} {% if page_obj and page_obj.has_next %}
{% blocktrans %}Loading more…{% endblocktrans %}
{% endif %}