{% extends "base.html" %} {% block title %}{{ _('My listings') }}{% endblock %} {% block content %}

{{ _('My listings') }}

{{ _('Active: %(a)s', a=active) }}{% if cap is not none %} / {{ cap }}{% else %} / ∞{% endif %} {{ _('Post new') }}
{% if cap is not none and active >= cap %}
{{ _("You've reached your plan's listing limit.") }} {{ _('Upgrade for more') }}
{% endif %} {% if not items %}

{{ _('No listings yet.') }}

{% endif %} {% for l in items %} {% endfor %}
{{ l.title }} {{ l.category.name }} {{ l.price_display or '—' }} {{ l.status.value }} {{ l.view_count }} {{ _('views') }} {{ _('Edit') }} · {{ _('Boost') }}
{% endblock %}