Put deletion policies units before periods

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-05-25 15:07:45 -04:00
parent d1f6a6b059
commit 18b42a03c8
3 changed files with 5 additions and 2 deletions

View File

@@ -271,6 +271,8 @@
* Add the checkdependencies command.
* Add comment and make file target to generate all requirement
files.
* Place deletion policies units before periods for clarity.
3.1.11 (2019-04-XX)
===================

View File

@@ -705,6 +705,7 @@ Other changes
Change color scheme to match rest of project. Increase size of data points.
Improve responsive settings. Redirect to the current view after queueing.
- Split document type retention policies into it own view.
- Place deletion policies units before periods for clarity.
Removals

View File

@@ -111,8 +111,8 @@ class DocumentTypeDeleteView(SingleObjectDeleteView):
class DocumentTypeDeletionPoliciesEditView(SingleObjectEditView):
fields = (
'trash_time_period', 'trash_time_unit', 'delete_time_period',
'delete_time_unit'
'trash_time_unit', 'trash_time_period', 'delete_time_unit',
'delete_time_period'
)
model = DocumentType
object_permission = permission_document_type_edit