django-components/tests/components/multi_file/multi_file.py
2024-01-27 23:10:03 +01:00

20 lines
661 B
Python

from typing import Any, Dict
from django.http import HttpResponse
from django_components import component
@component.register("multi_file_component")
class MultFileComponent(component.Component):
template_name = "multi_file/multi_file.html"
def post(self, request, *args, **kwargs) -> HttpResponse:
variable = request.POST.get("variable")
return self.render_to_response({"variable": variable})
def get(self, request, *args, **kwargs) -> HttpResponse:
return self.render_to_response({"variable": "GET"})
def get_context_data(self, variable, *args, **kwargs) -> Dict[str, Any]:
return {"variable": variable}