You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
2.0 KiB

# Copyright (C) 2017-2023 The Sipwise Team - http://sipwise.com
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
from django.contrib import admin
from import_export import resources
from import_export.admin import ExportActionModelAdmin
from import_export.admin import ImportExportModelAdmin
from . import models
class BuildReleaseResource(resources.ModelResource):
class Meta:
model = models.BuildRelease
@admin.register(models.BuildRelease)
class BuildReleaseAdmin(ImportExportModelAdmin, ExportActionModelAdmin):
resource_class = BuildReleaseResource
list_filter = ("release",)
readonly_fields = (
"projects",
"triggered_projects",
"built_projects",
"failed_projects",
"pool_size",
"triggered_jobs",
"build_deps",
)
modify_readonly_fields = (
"uuid",
"release",
) + readonly_fields
def get_readonly_fields(self, request, obj=None):
if obj is None:
return self.readonly_fields
return self.modify_readonly_fields
def save_model(self, request, obj, form, change):
if change:
super(BuildReleaseAdmin, self).save_model(
request, obj, form, change
)
else:
new_obj = models.BuildRelease.objects.create_build_release(
uuid=obj.uuid, release=obj.release
)
obj.pk = new_obj.pk