{% extends 'base.html.twig' %} {% block title %}Görüşme {% if CONFERENCE.id is null %}Ekle{% else %}Güncelle{% endif %}{% endblock %} {% block stylesheets %} {% endblock %} {% block body_class %} class="header-fixed sidebar-fixed sidebar-dark header-light" {% endblock %} {% block body %}
{{ include('admin/partials/left-sidebar.html.twig') }}
{{ include('admin/partials/header.html.twig') }}
{% if ERRORS is defined %}
    {% for error in ERRORS %}
  • Hata! {{ error.message }}
  • {% endfor %}
{% endif %} {% for message in app.flashes('danger') %}
{{ message }}
{% endfor %} {% for message in app.flashes('logout') %}
{{ message }}
{% endfor %}

GÖRÜŞME {% if CONFERENCE.id is null %}EKLE{% else %}GÜNCELLE{% endif %}

{{ include('admin/partials/footer.html.twig') }}
{% endblock %} {% block javascripts %} {% endblock %}