| {{ form_widget(f) }} |
{% if f.vars.value == 'hour' or f.vars.value == 'day' %}
{% set h = form.emailNotificationPreference.hour %}
{% if h.vars.choices is defined %}
{% endif %}
{% endif %}
{% if f.vars.value == 'week' %}
{% set h = form.emailNotificationPreference.day %}
{% if h.vars.choices is defined %}
{% endif %}
{% set h = form.emailNotificationPreference.hour %}
{% if h.vars.choices is defined %}
{% endif %}
{% endif %}
{% if f.vars.value == 'month' %}
{% set h = form.emailNotificationPreference.week %}
{% if h.vars.choices is defined %}
{% endif %}
{% set h = form.emailNotificationPreference.day %}
{% if h.vars.choices is defined %}
{% endif %}
{% set h = form.emailNotificationPreference.hour %}
{% if h.vars.choices is defined %}
{% endif %}
{% endif %}
|