few improvements on article category

- add verbose names to ArticleCategory fields
- add button to view categories list from articles list
- fix article_update template in form validation
- improve interface for articlecategory_update
- revert vanished urls (happened in merge with master...)
This commit is contained in:
Aurélien Delobelle 2017-04-05 15:34:28 +02:00
parent 42728e58be
commit 3ee9de93d9
7 changed files with 39 additions and 13 deletions

View file

@ -69,6 +69,12 @@ urlpatterns = [
name='kfet.account.negative'),
# Account - Statistics
url(r'^accounts/(?P<trigramme>.{3})/stat/operations/list$',
views.AccountStatOperationList.as_view(),
name='kfet.account.stat.operation.list'),
url(r'^accounts/(?P<trigramme>.{3})/stat/operations$',
views.AccountStatOperation.as_view(),
name='kfet.account.stat.operation'),
url(r'^accounts/(?P<trigramme>.{3})/stat/balance/list$',
views.AccountStatBalanceList.as_view(),