#86 Edit states EMA/EcoAccount

* adds support for editing of states for EMA and EcoAccount
* adds buttons and urls
This commit is contained in:
2022-02-10 11:15:01 +01:00
parent 0479f54a4d
commit a16e0af751
8 changed files with 75 additions and 12 deletions

View File

@@ -22,6 +22,7 @@ urlpatterns = [
path('<id>/state/new', state_new_view, name='new-state'),
path('<id>/action/new', action_new_view, name='new-action'),
path('<id>/state/<state_id>/remove', state_remove_view, name='state-remove'),
path('<id>/state/<state_id>/edit', state_edit_view, name='state-edit'),
path('<id>/action/<action_id>/remove', action_remove_view, name='action-remove'),
path('<id>/deadline/<deadline_id>/remove', deadline_remove_view, name='deadline-remove'),
path('<id>/deadline/new', deadline_new_view, name="new-deadline"),