diff options
| author | Étienne Loks <etienne.loks@proxience.com> | 2015-06-02 00:00:34 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@proxience.com> | 2015-06-02 00:00:34 +0200 | 
| commit | dd4d3692eb7abbcd177f50a790ac70402502adc3 (patch) | |
| tree | 4ab51f098a8bf0866b046af761f1c483bba345ad | |
| parent | 2fe3a047a1b9fcdea86d967b3872e33e5d0a831f (diff) | |
| parent | 5b4f779a9845c5d6191b726c6fafbf6d88f007de (diff) | |
| download | Ishtar-dd4d3692eb7abbcd177f50a790ac70402502adc3.tar.bz2 Ishtar-dd4d3692eb7abbcd177f50a790ac70402502adc3.zip | |
Merge branch 'stable'
| -rw-r--r-- | ishtar_common/models.py | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 984e9048b..d2c052311 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1392,7 +1392,10 @@ class Import(models.Model):              actions.append(('A', _(u"Re-analyse")))              actions.append(('I', _(u"Launch import")))          if self.state in ('F', 'FE'): +            actions.append(('I', _(u"Re-import")))              actions.append(('AC', _(u"Archive"))) +        if self.state in ('AC'): +            actions.append(('A', _(u"Unarchive")))          actions.append(('D', _(u"Delete")))          return actions | 
