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
divand this can be redefined by the user overwriting theextendsattribute. Example:
class MySpecialInput(Component):
extends = 'input'