Skip to content
Guillaume Camera edited this page Feb 17, 2016 · 12 revisions

Welcome to the django-formidable wiki!

Grammar Validations

validation : orBool | ifStatement ; ifStatement : 'if(' orBool ',' validation ( ',' validation )? ')' ; orBool : andBool ( 'or(' andBool ')' )* ; andBool : comparison ( 'and(' comparison )* ')' ; comparison : boolFunc ( functionsList) | function boolFunc: 'EQ' | 'NEQ' | 'GT' | 'GTE' | 'LT' | 'LTE'] functionList : function(, function)* function : ID '(' argsList ')' | value ; argsList : function ( ',' function )*; value : STRING | INTEGER | DATE | BOOLEAN | field ; field : 'field(' ID ')';``

Clone this wiki locally