{% extends 'admin/layout.html.twig' %} {% block title %}Список доступных посёлков{% endblock %} {% block body %}
Название | Номер | Площадь | Цена | Статус | Активность | Действия | |||||
---|---|---|---|---|---|---|---|---|---|---|---|
{{ stead.name }} | {{ stead.number }} | {{ stead.area }} | {{ stead.cost }} | {% if stead.status %} {% if stead.status is instanceof('App\\Entity\\VillageSteadStatus\\Sale') %} {{ stead.status.name }} {% elseif stead.status is instanceof('App\\Entity\\VillageSteadStatus\\Reserved') %} {{ stead.status.name }} {% elseif stead.status is instanceof('App\\Entity\\VillageSteadStatus\\Sold') %} {{ stead.status.name }} {% elseif stead.status is instanceof('App\\Entity\\VillageSteadStatus\\NotForSale') %} {{ stead.status.name }} {% endif %} {% else %} — {% endif %} | {% if stead.isActive %} Да {% else %} Нет {% endif %} | редактировать | |||||
no records found |