diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-04 09:35:10 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-04 09:35:10 +0200 |
commit | acebafccaa129825f05f4608437ee2a6212fbe01 (patch) | |
tree | bd71e04174b3db4a01be9402d97b7ace57a1fee9 /archaeological_finds/models_finds.py | |
parent | 8d7c65fdf6669a15770805ff6ff6c4b0b6fc0025 (diff) | |
download | Ishtar-acebafccaa129825f05f4608437ee2a6212fbe01.tar.bz2 Ishtar-acebafccaa129825f05f4608437ee2a6212fbe01.zip |
QA find: add divide action
Diffstat (limited to 'archaeological_finds/models_finds.py')
-rw-r--r-- | archaeological_finds/models_finds.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index ad8beb623..24e5227c1 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -1635,7 +1635,9 @@ class Find(BulkUpdatedItem, ValueGetter, DocumentItem, BaseHistorizedItem, _(u"Add to basket"), "fa fa-shopping-basket", "", "", True), (reverse('find-add-treatment', args=[self.pk]), - _(u"Add treatment"), "fa fa-flask", "", "", False), + _(u"Simple treatment"), "fa fa-flask", "", "", False), + (reverse('find-add-divide-treatment', args=[self.pk]), + _(u"Divide treatment"), "fa fa-scissors", "", "", False), ] if get_current_profile().warehouse: actions.append( |