replace Change with ChangedObject (wrapper integration still missing)

This commit is contained in:
Laura Klünder 2017-06-27 03:20:50 +02:00
parent 0ef51ac147
commit 9d5811bc15
12 changed files with 457 additions and 855 deletions

View file

@ -37,8 +37,6 @@ urlpatterns = [
url(r'^levels/(?P<on_top_of>c?[0-9]+)/levels_on_top/create$', edit, name='editor.levels_on_top.create',
kwargs={'model': 'Level'}),
url(r'^changesets/(?P<pk>[0-9]+)/$', changeset_detail, name='editor.changesets.detail'),
url(r'^changesets/(?P<pk>[0-9]+)/history$', changeset_detail, name='editor.changesets.history',
kwargs={'show_history': True}),
url(r'^login$', login_view, name='editor.login'),
url(r'^logout$', logout_view, name='editor.logout'),
]