(self, name, value, attrs)
| 405 | super().__init__(attrs) |
| 406 | |
| 407 | def get_context(self, name, value, attrs): |
| 408 | context = super().get_context(name, value, attrs) |
| 409 | context["widget"]["type"] = self.input_type |
| 410 | return context |
| 411 | |
| 412 | |
| 413 | class TextInput(Input): |
no outgoing calls