Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions templates/admin/accounting/invoice/edit.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,6 @@
<div class="four wide column action_container"></div>
</div>
{{ form_row(detail.reference) }}
<div class="inline fields ui grid">
<div class="three wide column"></div>
<div class="field seven wide column">Rappel : sponsoring 20%, place supplémentaire 10%.</div>
</div>
{{ form_row(detail.tva) }}
{{ form_row(detail.designation) }}
{{ form_row(detail.quantity) }}
Expand Down
4 changes: 0 additions & 4 deletions templates/admin/accounting/quotation/_prototype.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
<div class="four wide column action_container"></div>
</div>
{{ form_row(form.details.vars.prototype.reference) }}
<div class="inline fields ui grid">
<div class="three wide column"> </div>
<div class="field seven wide column right aligned">Rappel : sponsoring 20%, place supplémentaire 10%.</div>
</div>
{{ form_row(form.details.vars.prototype.tva) }}
{{ form_row(form.details.vars.prototype.designation) }}
{{ form_row(form.details.vars.prototype.quantity) }}
Expand Down
4 changes: 0 additions & 4 deletions templates/admin/accounting/quotation/form.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,6 @@
<div class="four wide column action_container"></div>
</div>
{{ form_row(detail.reference) }}
<div class="inline fields ui grid">
<div class="three wide column"></div>
<div class="field seven wide column">Rappel : sponsoring 20%, place supplémentaire 10%.</div>
</div>
{{ form_row(detail.tva) }}
{{ form_row(detail.designation) }}
{{ form_row(detail.quantity) }}
Expand Down
9 changes: 0 additions & 9 deletions templates/admin/event/form.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,6 @@
{{ form_row(form.title) }}
{{ form_row(form.path) }}
</div>
<div class="ui form">
<div class="inline fields ui grid">
<label class="three wide column">
</label>
<div class="field seven wide column">
<i>Le path sert également à déterminer le nom du template de mail à utiliser sur mandrill, sous la forme confirmation-inscription-{PATH}</i>
</div>
</div>
</div>
<div class="ui form">
{{ form_row(form.logoUrl) }}
{{ form_row(form.seats) }}
Expand Down
7 changes: 6 additions & 1 deletion templates/form_theme_admin.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@
{%- block form_row -%}
<div class="inline fields ui grid">
{{ form_label(form) }}
<div class="field nine wide column">
<div class="field nine wide column"{% if help is not empty %} style="flex-wrap: wrap;"{% endif %}>
<div class="ui input">
{{ form_widget(form) }}
{{ form_errors(form) }}
</div>
{% if help is not empty %}
<div style="flex-basis: 100%;">
<i>{{ form_help(form) }}</i>
</div>
{% endif %}
</div>
</div>
{%- endblock form_row -%}
Expand Down
Loading