templates/web/projects/_project_detail_param_table.html.twig line 1

  1. <section class="mt-5">
        <div class="container">
            <div class="project-detail">
                {% if get_project_provider(project) != '' %}
                    <div class="project-detail__section">
                        <h5 class="project-detail__section-heading">{% trans %}poskytovatel{% endtrans %}</h5>
                        <div class="project-detail__section-content">
                            {{ get_project_provider(project) }}
                        </div>
                    </div>
                {% endif %}
                {% if get_project_code(project) != '' %}
                    <div class="project-detail__section">
                        <h5 class="project-detail__section-heading">{% trans %}kod.projektu{% endtrans %}</h5>
                        <div class="project-detail__section-content">
                            {{ get_project_code(project) }}
                        </div>
                    </div>
                {% endif %}
                {% if get_project_type(project) != '' %}
                    <div class="project-detail__section">
                        <h5 class="project-detail__section-heading">{% trans %}typ.projektu{% endtrans %}</h5>
                        <div class="project-detail__section-content">
                            {{ get_project_type(project) }}
                        </div>
                    </div>
                {% endif %}
                {% if get_project_start(project) != '' %}
                    <div class="project-detail__section">
                        <h5 class="project-detail__section-heading">{% trans %}rok.zahajeni{% endtrans %}</h5>
                        <div class="project-detail__section-content">
                            {{ get_project_start(project) }}
                        </div>
                    </div>
                {% endif %}
                {% if get_project_end(project) != '' %}
                    <div class="project-detail__section">
                        <h5 class="project-detail__section-heading">{% trans %}rok.ukoncenikon{% endtrans %}</h5>
                        <div class="project-detail__section-content">
                            {{ get_project_end(project) }}
                        </div>
                    </div>
                {% endif %}
                {% if get_project_solver(project) != '' %}
                    <div class="project-detail__section">
                        <h5 class="project-detail__section-heading">{% trans %}resitel.kav{% endtrans %} MÚA</h5>
                        <div class="project-detail__section-content">
                            {{ get_project_solver(project) }}
                        </div>
                    </div>
                {% endif %}
                {% if get_project_main_recipient(project) != '' %}
                    <div class="project-detail__section">
                        <h5 class="project-detail__section-heading">{% trans %}Hlavní příjemce{% endtrans %}</h5>
                        <div class="project-detail__section-content">
                            {{ get_project_main_recipient(project) }}
                        </div>
                    </div>
                {% endif %}
                {% if get_project_other_recipients(project) != '' %}
                    <div class="project-detail__section">
                        <h5 class="project-detail__section-heading">{% trans %}dalsi.prijemci{% endtrans %}</h5>
                        <div class="project-detail__section-content">
                            {{ get_project_other_recipients(project) }}
                        </div>
                    </div>
                {% endif %}
            </div>
            <div class="d-flex gap-5 mt-100">
                {% if get_project_web_link(project) != '' %}
                <a href="{{ get_project_web_link(project) }}" class="btn btn-outline btn-icon">
                    {% trans %}web.projektu{% endtrans %}
                    <svg class="btn-icon__arrow-right">
                        <use href="{{ asset('/build/svg/_btn-icons.svg#arrowRight') }}"></use>
                    </svg>
                </a>
                {% endif %}
                {% if get_project_isvavai_link(project) != '' %}
                    <a href="{{ get_project_isvavai_link(project) }}" class="btn btn-outline btn-icon">
                        {% trans %}projekt.na{% endtrans %} isvavai.cz
                        <svg class="btn-icon__arrow-right">
                            <use href="{{ asset('/build/svg/_btn-icons.svg#arrowRight') }}"></use>
                        </svg>
                    </a>
                {% endif %}
            </div>
        </div>
    </section>