@@ -794,13 +794,9 @@ field) are rendered separately, usually at the top of your form:
794
794
<?php echo $view['form']->render($form); ?>
795
795
796
796
To customize *only * the markup used for these errors, follow the same directions
797
- as above, but now check if the ``compound `` variable is set to ``true ``.
798
-
799
- ..tip ::
800
-
801
- If the ``compound `` variable is ``true ``, it means that what's being
802
- currently rendered is a collection of fields (e.g. a whole form), and not
803
- just an individual field.
797
+ as above, but now check if the ``compound `` variable is set to ``true ``. If it
798
+ is ``true ``, it means that what's being currently rendered is a collection of
799
+ fields (e.g. a whole form), and not just an individual field.
804
800
805
801
..configuration-block ::
806
802
@@ -817,7 +813,7 @@ as above, but now check if the ``compound`` variable is set to ``true``.
817
813
{% endfor %}
818
814
</ul>
819
815
{% else %}
820
- {# display the errors for a single field #}
816
+ {#... display the errors for a single field #}
821
817
{% endif %}
822
818
{% endif %}
823
819
{% endspaceless %}
@@ -834,7 +830,7 @@ as above, but now check if the ``compound`` variable is set to ``true``.
834
830
<?php endforeach; ?>
835
831
</ul>
836
832
<?php else: ?>
837
- <?php // render the errors for a single field? >
833
+ <!-- ... render the errors for a single field-- >
838
834
<?php endif; ?>
839
835
<?php endif ?>
840
836