Hello, i was wondering if there was a away to put a message on the top of my standard form template saying something to the effect of "There were problems with your entry. Please correct the errors below." I have now had a number of users think they submitted something correctly simply because they have old monitors and would have needed to have scrolled down to get the red error message for the form element that wasn't valid. So, whenever there are formerrors I would like to be able to differentiate between singular and plural errors and give them a note saying that ney need to look down. Is there a way to do something like:
<if @formerrors@>
<if @formerrors.count@ gt 1>
There were problems with your entry. Please correct the errors below.
</if>
<else>
There was a problem with your entry. Please correct the error below.
</else>
</if>
If not simply an "if" statement that lets me put up the plural message would be good enough. Does anybody have any pointers? thanks for the help.