mirror of
https://github.com/logos-co/open-law.git
synced 2025-01-10 14:55:50 +00:00
8 lines
142 B
Python
8 lines
142 B
Python
from flask_wtf import FlaskForm
|
|
|
|
|
|
# Using: {{ form_hidden_tag() }}
|
|
def form_hidden_tag():
|
|
form = FlaskForm()
|
|
return form.hidden_tag()
|