diff --git a/docs/changelog.rst b/docs/changelog.rst index 7a0523e..c6c7fb8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,9 @@ Changelog ========= +* :release:`0.14.4 <2023-07-22>` +* :bug:`-` add customer to disk space detail view + * :release:`0.14.3 <2023-07-22>` * :bug:`-` fix missing permission check on disk space detail view diff --git a/gnuviechadmin/gnuviechadmin/__init__.py b/gnuviechadmin/gnuviechadmin/__init__.py index 233a49a..4cf17fe 100644 --- a/gnuviechadmin/gnuviechadmin/__init__.py +++ b/gnuviechadmin/gnuviechadmin/__init__.py @@ -1,4 +1,4 @@ # import celery_app to initialize it from gnuviechadmin.celery import app as celery_app # NOQA -__version__ = "0.14.3" +__version__ = "0.14.4" diff --git a/gnuviechadmin/hostingpackages/templates/hostingpackages/customerhostingpackage_detail.html b/gnuviechadmin/hostingpackages/templates/hostingpackages/customerhostingpackage_detail.html index 503a2a2..f610e4d 100644 --- a/gnuviechadmin/hostingpackages/templates/hostingpackages/customerhostingpackage_detail.html +++ b/gnuviechadmin/hostingpackages/templates/hostingpackages/customerhostingpackage_detail.html @@ -44,7 +44,7 @@ You use {{ used_space }} of the reserved disk space of {{ disk_space }} for your hosting package {% endblocktranslate %}" class="text-{% if space_level > 90.0 %}danger{% elif space_level > 80.0 %}warning{% else %}success{% endif %}">{% blocktranslate with space_level_percent=space_level|floatformat:1 trimmed%} {{ used_space }} of {{ disk_space }} ({{ space_level_percent }}%) -{% endblocktranslate %} {% translate "Details" %} +{% endblocktranslate %} {% translate "Details" %} /disk-usage/", + "//disk-usage/", CustomerHostingPackageDiskUsageDetails.as_view(), name="disk_usage_details", ), diff --git a/gnuviechadmin/hostingpackages/views.py b/gnuviechadmin/hostingpackages/views.py index 941e978..86b0b21 100644 --- a/gnuviechadmin/hostingpackages/views.py +++ b/gnuviechadmin/hostingpackages/views.py @@ -327,6 +327,15 @@ class CustomerHostingPackageDiskUsageDetails(StaffOrSelfLoginRequiredMixin, Deta pk_url_kwarg = "package" context_object_name = "hostingpackage" + customer = None + + def get_customer_object(self): + if self.customer is None: + self.customer = get_object_or_404( + get_user_model(), username=self.kwargs["user"] + ) + return self.customer + def get_queryset(self, queryset=None): return super().get_queryset().prefetch_related("customerpackagediskusage_set") @@ -347,6 +356,7 @@ class CustomerHostingPackageDiskUsageDetails(StaffOrSelfLoginRequiredMixin, Deta context_data.update( { + "customer": self.get_customer_object(), "disk_usage": disk_usage, "mysql_usage": mysql_usage, "pgsql_usage": pgsql_usage, diff --git a/pyproject.toml b/pyproject.toml index 7347c14..229a81d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gva" -version = "0.14.3" +version = "0.14.4" description = "gnuviechadmin web interface" authors = ["Jan Dittberner "] license = "AGPL-3+"