From cbaf41adbcbcb4d1593b68c83b81ac72f309fd2f Mon Sep 17 00:00:00 2001 From: George Katsikas <giorgakis.katsikas@gmail.com> Date: Wed, 27 Nov 2024 16:38:07 +0100 Subject: [PATCH] add unique option prefixes to plot kinds --- scipost_django/graphs/graphs/plotkind.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scipost_django/graphs/graphs/plotkind.py b/scipost_django/graphs/graphs/plotkind.py index 3503c7bd3..e22c039e8 100644 --- a/scipost_django/graphs/graphs/plotkind.py +++ b/scipost_django/graphs/graphs/plotkind.py @@ -125,7 +125,7 @@ class TimelinePlot(PlotKind): return x, y class Options(BaseOptions): - prefix = PlotKind.Options.prefix + prefix = "timeline_plot_" y_key = forms.CharField(label="Y-axis key", required=False, initial="id") x_lim_min = forms.DateTimeField( label="X min", @@ -242,11 +242,13 @@ class MapPlot(PlotKind): Return the a tuple of lists of countries and their counts. """ qs = self.plotter.get_queryset() + prefix = "map_plot_" count_key = self.options.get("count_key", "id") group_by_country_count = ( qs.filter(Q(**{self.plotter.country_key + "__isnull": False})) .values(self.plotter.country_key) .annotate(count=Count(count_key)) + prefix = "map_plot_" ) countries, count = zip( -- GitLab