{% extends 'dashboard/base.html.twig' %} {% block title %}{{ 'dashboard_items_extended.my_objects'|trans }} - {{ member.fullName }}{% endblock %} {% block dashboard_content %}
| {{ 'dashboard_items.image'|trans }} | {{ 'dashboard_items.title_column'|trans }} | {{ 'dashboard_items.category'|trans }} | {{ 'dashboard_items.price'|trans }} | {{ 'dashboard_items.status'|trans }} | {{ 'dashboard_items.actions'|trans }} |
|---|---|---|---|---|---|
|
{% if item.images and item.images|length > 0 %}
|
{{ item.title }}
{{ item.description|slice(0, 50) }}... |
{{ item.category ? item.category.name : '-' }} | {% if item.price %} {{ item.price|number_format(0, ',', ' ') }}€ {% else %} {{ 'dashboard_items.on_request'|trans }} {% endif %} | {% set statusClass = { 'draft': 'secondary', 'available': 'success', 'reserved': 'warning', 'sold': 'danger' } %} {{ item.status.value|title }} |
{{ 'dashboard_items_extended.start_collection'|trans }}