aboutsummaryrefslogtreecommitdiffstats
path: root/rrs
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2018-04-09 17:33:49 +1200
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-05-04 23:57:53 +1200
commit34466bac1d008c03635db7b639d0939303c566f0 (patch)
tree376a219a48e2f30dc8075a0f8f66507e7ad227b6 /rrs
parent1f037470fb999f6799c2db1774bc00b4a205c17f (diff)
downloadopenembedded-core-contrib-34466bac1d008c03635db7b639d0939303c566f0.tar.gz
rrs: default python2/3 environments for new maintenance plan layer branches
It's a bit of a pain to have to set the two python environment fields on every record in order to have things set correctly, and it can easily get forgotten, so try to set them automatically by default (assuming reasonable naming). Note that this does introduce an annoying behaviour whereby if you click "Add another Maintenance plan layer branch" and then decide you don't want it, the admin form will insist you fill in the fields unless you clear out the python2/3 environment fields. I'm not sure how to fix that, so I'm leaving it as-is for now. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'rrs')
-rw-r--r--rrs/admin.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/rrs/admin.py b/rrs/admin.py
index d00785f032..07e09f4f4a 100644
--- a/rrs/admin.py
+++ b/rrs/admin.py
@@ -4,16 +4,46 @@
#
# Licensed under the MIT license, see COPYING.MIT for details
+from django.utils.functional import curry
+
from django.contrib import admin
from django.contrib.admin import DateFieldListFilter
+from django.forms.models import BaseInlineFormSet
from rrs.models import Release, Milestone, Maintainer, RecipeMaintainerHistory, \
RecipeMaintainer, RecipeDistro, RecipeUpgrade, RecipeUpstream, \
RecipeUpstreamHistory, MaintenancePlan, MaintenancePlanLayerBranch, \
RecipeMaintenanceLink
+class MaintenancePlanLayerBranchFormSet(BaseInlineFormSet):
+ def __init__(self, *args, **kwargs):
+ from layerindex.models import PythonEnvironment
+ initialfields = {}
+ py2env = PythonEnvironment.get_default_python2_environment()
+ if py2env:
+ initialfields['python2_environment'] = py2env.id
+ py3env = PythonEnvironment.get_default_python3_environment()
+ if py3env:
+ initialfields['python3_environment'] = py3env.id
+ if initialfields:
+ kwargs['initial'] = [initialfields]
+ super(MaintenancePlanLayerBranchFormSet, self).__init__(*args, **kwargs)
+
+ @property
+ def empty_form(self):
+ from layerindex.models import PythonEnvironment
+ form = super(MaintenancePlanLayerBranchFormSet, self).empty_form
+ py2env = PythonEnvironment.get_default_python2_environment()
+ if py2env:
+ form.fields['python2_environment'].initial = py2env
+ py3env = PythonEnvironment.get_default_python3_environment()
+ if py3env:
+ form.fields['python3_environment'].initial = py3env
+ return form
+
class MaintenancePlanLayerBranchInline(admin.StackedInline):
model = MaintenancePlanLayerBranch
+ formset = MaintenancePlanLayerBranchFormSet
readonly_fields = ['upgrade_date', 'upgrade_rev']
min_num = 1
extra = 0