django-components/sampleproject/components/todo/todo.py
Juro Oravec d94a459c8d
refactor: rename template_name to template_file (#878)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2025-01-01 17:06:14 +01:00

8 lines
253 B
Python

from django_components import Component, register
@register("todo")
class Todo(Component):
# Templates inside `[your apps]/components` dir and `[project root]/components` dir
# will be automatically found.
template_file = "todo/todo.html"