diff --git a/src/Bundle/ChillMainBundle/Resources/views/Form/fields.html.twig b/src/Bundle/ChillMainBundle/Resources/views/Form/fields.html.twig index 1e2bf713f..ce406286b 100644 --- a/src/Bundle/ChillMainBundle/Resources/views/Form/fields.html.twig +++ b/src/Bundle/ChillMainBundle/Resources/views/Form/fields.html.twig @@ -192,3 +192,9 @@ {% endif %} {% endfor %} {% endblock %} + +{% block comment_widget %} + {% for entry in form %} + {{ form_widget(entry) }} + {% endfor %} +{% endblock comment_widget %} diff --git a/src/Bundle/ChillPersonBundle/Resources/public/chill/chillperson.scss b/src/Bundle/ChillPersonBundle/Resources/public/chill/chillperson.scss index f3759aef7..071d0f9a5 100644 --- a/src/Bundle/ChillPersonBundle/Resources/public/chill/chillperson.scss +++ b/src/Bundle/ChillPersonBundle/Resources/public/chill/chillperson.scss @@ -185,6 +185,29 @@ div.banner { } } +div.household-resume { + display: flex; + flex-direction: row; + align-items: center; + + div.col-address { + font-size: 120%; + padding-left: 1em; + + } + div.col-comment { + //padding: 0; + margin-bottom: 1rem; + display: flex; + flex-direction: column; + > * > * { + & > .chill-user-quote { + margin: 1.5em -1.67em 0; + } + } + } +} + /* * BADGES, MARKS, PINS * for chill person theme diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Address/_insert_vue_address.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Address/_insert_vue_address.html.twig index 8038257d6..e235aae15 100644 --- a/src/Bundle/ChillPersonBundle/Resources/views/Address/_insert_vue_address.html.twig +++ b/src/Bundle/ChillPersonBundle/Resources/views/Address/_insert_vue_address.html.twig @@ -9,6 +9,9 @@ * modalTitle twig translated chain * buttonText twig translated chain * buttonSize bootstrap class like 'btn-sm' + * buttonDisplayText bool + * binModalStep1 bool + * binModalStep2 bool #}
diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Household/_render_member.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Household/_render_member.html.twig index 25160ff5b..5b41a15e3 100644 --- a/src/Bundle/ChillPersonBundle/Resources/views/Household/_render_member.html.twig +++ b/src/Bundle/ChillPersonBundle/Resources/views/Household/_render_member.html.twig @@ -31,7 +31,7 @@{{ 'household.Household does not have any address currently'|trans }}
-{% else %} -{{ 'household.Household does not have any address currently'|trans }}
{% else %} - {{ 'household.Expecting for birth'|trans }} +- {{ 'household.Any expecting birth'|trans }} -
- {% endif %} - +{{ 'household.Any persons into this position'|trans }}
{% endif %} - - {%- set members = household.currentMembersByPosition(p) %} + {% set members = household.nonCurrentMembersByPosition(p) %} + {% if members|length > 0 %} - {% macro customButtons(member, household) %} -{{ 'household.Any persons into this position'|trans }}
- {% endif %} - - {% set members = household.nonCurrentMembersByPosition(p) %} - {% if members|length > 0 %} - - -
+-
+
+
+
+ {{ form_end(form) }} + + {% endif %} + +