Changes between Initial Version and Version 1 of Ticket #34531, comment 1
- Timestamp:
- May 2, 2023, 12:52:05 PM (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34531, comment 1
initial v1 3 3 The action is simple: the Django user has to either define `template_name` in their form, or render the form in a template explicitly showing a format. So, if you change your example to any of the `as_p`, `as_table`, `as_div`, etc: 4 4 5 ```python 5 {{{ 6 6 t = Template("{{ form.as_p }}") 7 ``` 7 }}} 8 8 9 9 the warning is resolved and no issues are reported. I'll close as invalid considering the above.