Skip to content

0.2.1b0

Compare
Choose a tag to compare
@edelvalle edelvalle released this 26 May 19:51
· 348 commits to master since this release
  • 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 the extends attribute. Example:
class MySpecialInput(Component):
    extends = 'input'