{% extends 'excerptexport/base.html' %}{% load i18n static export_count_for_user %} {% block breadcrumb %} {{ block.super }} / Existing excerpt Export /
  • {% trans 'Excerpt List' %}
  • {% endblock %} {% block main %}
    {% for excerpt in excerpts %}
    {% export_count_for_user user=request.user excerpt=excerpt as export_count %}

    {{ excerpt.name }}

    {% blocktrans %}Contains {{ export_count }} export(s).{% endblocktrans %}
    {% trans 'See your exports.' %}
    {% empty %}

    {% trans 'You have no personal, non-public excerpts.' %}

    {% endfor %}
    {% endblock %}