Subversion Repositories web.kimai2

Rev

Blame | Last modification | View Log | Download

{% extends kimai_context.modalRequest ? 'form.html.twig' : 'base.html.twig' %}

{% block main %}
    {% set formEditTemplate = kimai_context.modalRequest ? 'default/_form_modal.html.twig' : 'default/_form.html.twig' %}
    {% set formOptions = {
        'title': (project.id is null ? 'create-project'|trans({}, 'actions') : 'edit'|trans({}, 'actions')),
        'form': form,
        'back': path('admin_project')
    } %}
    {% embed formEditTemplate with formOptions %}
        {% block form_body %}
            <div class="row">
                <div class="col-md-9">
                    {{ form_row(form.name) }}
                </div>
                <div class="col-md-3">
                    {{ form_row(form.color) }}
                </div>
            </div>
            {{ form_row(form.comment) }}
            {{ form_row(form.customer) }}
            <div class="row">
                <div class="col-md-6">
                    {{ form_row(form.orderNumber) }}
                </div>
                <div class="col-md-6">
                    {{ form_row(form.orderDate) }}
                </div>
            </div>
            <div class="row">
                <div class="col-md-6">
                    {{ form_row(form.start) }}
                </div>
                <div class="col-md-6">
                    {{ form_row(form.end) }}
                </div>
            </div>
            {% if form.budgetType is defined %}
            <div class="row">
                {% if form.budget is defined %}
                <div class="col-md-4">
                    {{ form_row(form.budget) }}
                </div>
                {% endif %}
                {% if form.timeBudget is defined %}
                <div class="col-md-4">
                    {{ form_row(form.timeBudget) }}
                </div>
                {% endif %}
                <div class="col-md-4">
                    {{ form_row(form.budgetType) }}
                </div>
            </div>
            {% endif %}
            {% if form.teams is defined %}
                <div class="row">
                    <div class="col-12">
                        {{ form_row(form.teams) }}
                    </div>
                </div>
            {% endif %}
            <div class="row">
                <div class="col-md-4">
                    {{ form_row(form.visible) }}
                </div>
                <div class="col-md-4">
                    {{ form_row(form.billable) }}
                </div>
                <div class="col-md-4">
                    {{ form_row(form.globalActivities) }}
                </div>
            </div>
            {% if form.metaFields is defined and form.metaFields is not empty %}
                {{ form_row(form.metaFields) }}
            {% endif %}
            {% embed '@theme/embeds/collapsible.html.twig' with {id: 'project_invoice_settings'} %}
                {% import "macros/widgets.html.twig" as widgets %}
                {% block title %}{{ 'invoices'|trans }}{% endblock %}
                {% block body %}
                    {% if form.invoiceText is defined %}
                        {{ form_row(form.invoiceText) }}
                    {% endif %}
                {% endblock %}
            {% endembed %}
            {{ form_rest(form) }}
        {% endblock %}
    {% endembed %}
{% endblock %}