On passe à 8 le nb maxi d'adultes dans la recherche rapide

This commit is contained in:
2021-05-11 11:48:43 +02:00
parent e867a95784
commit ea5194be9b
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
/web/cache/
/web/assets/
/log/
/cache/

View File

@@ -35,7 +35,7 @@
<label class="control-label" for="{$label_attr.for}"><i class="fa fa-male"></i> {$label}{if $required} <span class="required">*</span>{/if}</label>
<div class="control-input">
<select name="{$name}" id="{$label_attr.for}" class=" form-control" {if $required} aria-required="true" required{/if}{if ! $error_focus && $error} autofocus{/if}>
{for $idx = 1 to 5}
{for $idx = 1 to 8}
<option value="{$idx}"{if $value == $idx} selected{/if}>{$idx}</option>
{/for}
</select>