mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-30 13:51:53 +00:00
9 lines
326 B
Python
9 lines
326 B
Python
|
from django.views.generic import create_update
|
||
|
from feincms.views.decorators import add_page_to_extra_context
|
||
|
|
||
|
|
||
|
create_object = add_page_to_extra_context(create_update.create_object)
|
||
|
update_object = add_page_to_extra_context(create_update.update_object)
|
||
|
delete_object = add_page_to_extra_context(create_update.delete_object)
|
||
|
|