forked from DGNum/gestioCOF
Reprise de la vue historique
- Ajout de paramètres à cette vue - `opegroups` contient maintenant une liste de groupes d'opérations et non plus un dictionnaire contenant `opegroup.pk` => `opegroup`
This commit is contained in:
parent
54ff265b0f
commit
b380984a1e
3 changed files with 82 additions and 26 deletions
10
kfet/urls.py
10
kfet/urls.py
|
@ -123,8 +123,6 @@ urlpatterns = [
|
|||
name = 'kfet.kpsul.perform_operations'),
|
||||
url('^k-psul/cancel_operations$', views.kpsul_cancel_operations,
|
||||
name = 'kfet.kpsul.cancel_operations'),
|
||||
url('^k-psul/history$', views.kpsul_history,
|
||||
name = 'kfet.kpsul.history'),
|
||||
url('^k-psul/articles_data', views.kpsul_articles_data,
|
||||
name = 'kfet.kpsul.articles_data'),
|
||||
url('^k-psul/update_addcost$', views.kpsul_update_addcost,
|
||||
|
@ -132,8 +130,16 @@ urlpatterns = [
|
|||
url('^k-psul/get_settings$', views.kpsul_get_settings,
|
||||
name = 'kfet.kpsul.get_settings'),
|
||||
|
||||
# -----
|
||||
# JSON urls
|
||||
# -----
|
||||
|
||||
url('^history.json$', views.history_json,
|
||||
name = 'kfet.history.json'),
|
||||
|
||||
# -----
|
||||
# Settings urls
|
||||
# -----
|
||||
|
||||
url('^settings/$',
|
||||
permission_required('kfet.change_settings')(views.SettingsList.as_view()),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue