{% extends 'base.html.twig' %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('admin') }} {% endblock %} {% block title %}{{ company.companyname }} adverts{% endblock %} {% block body %}

{{ company.companyname }} adverts

Create advert
{% for ad in adverts %} {% endfor %}
Title View
{{ ad.title }} {% set eventCategory = '' %} {% for category in categories %} {% if (category.id == ad.category) %} {% set eventCategory = category.getTitleSlug %} {% endif %} {% endfor %} View
{% endblock %}