0.2.1b0
- Adds to component component
send_redirect(url)
. Example:
def receive_save(self, name, **kwargs):
self.instance.name = name
self.instance.save()
self.send_redirect(self.instance.get_absolute_url())
- Components are now based on
div
and this can be redefined by the user overwriting theextends
attribute. Example:
class MySpecialInput(Component):
extends = 'input'