More description.

This commit is contained in:
Daniel Dupriest 2019-03-23 16:08:33 -07:00 committed by GitHub
parent 0a33dcc6c4
commit 91bb283919
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,10 +139,10 @@ An example of a simple rule that checks the boolean value of the field named 'ec
```
my_flight_section.add_rule(
title="Economy Check",
rule=lambda report, fields: "Only economy class tickets are allowed." if fields['economy'] else None
rule=lambda report, fields: "Only economy class tickets are allowed." if not fields['economy'] else None
```
For more complex, multi-line rules, a temporary function may be defined and passed to the "rule" parameter when adding a rule. Currently, accessing fields from other sections via the "report" parameter is not supported.
For more complex, multi-line rules, a temporary function may be defined and passed to the "rule" parameter when adding a rule. See the included `policy.py` file content for examples of more complex rules. Currently, accessing fields from other sections via the "report" parameter is not supported.
### Admin Files