Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 from jinja2 import contextfunction | |
2 | |
3 @contextfunction | |
4 def has_string(context, name, page=None): | |
juliandoucette
2017/04/28 21:56:01
Too bad get_string throws an exception :/
If we c
Jon Sonesen
2017/04/29 08:30:55
The thing is that we have it raise the exception s
juliandoucette
2017/05/02 08:39:17
Ack.
juliandoucette
2017/05/02 08:45:45
Done.
| |
5 try: | |
6 if get_string(name, page): | |
7 return True | |
8 except: | |
9 return False | |
OLD | NEW |