Do not exclude DEMO and SHOWCASE maps anymore from home
Those maps can be excluded by setting their share_status=OPEN cf #1414
This commit is contained in:
parent
66ee9c736e
commit
160c4ae420
1 changed files with 0 additions and 4 deletions
|
@ -140,8 +140,6 @@ class Home(PaginatorMixin, TemplateView, PublicMapsMixin):
|
||||||
demo_map = Map.public.get(pk=settings.UMAP_DEMO_PK)
|
demo_map = Map.public.get(pk=settings.UMAP_DEMO_PK)
|
||||||
except Map.DoesNotExist:
|
except Map.DoesNotExist:
|
||||||
pass
|
pass
|
||||||
else:
|
|
||||||
maps = maps.exclude(id=demo_map.pk)
|
|
||||||
|
|
||||||
showcase_map = None
|
showcase_map = None
|
||||||
if hasattr(settings, "UMAP_SHOWCASE_PK"):
|
if hasattr(settings, "UMAP_SHOWCASE_PK"):
|
||||||
|
@ -149,8 +147,6 @@ class Home(PaginatorMixin, TemplateView, PublicMapsMixin):
|
||||||
showcase_map = Map.public.get(pk=settings.UMAP_SHOWCASE_PK)
|
showcase_map = Map.public.get(pk=settings.UMAP_SHOWCASE_PK)
|
||||||
except Map.DoesNotExist:
|
except Map.DoesNotExist:
|
||||||
pass
|
pass
|
||||||
else:
|
|
||||||
maps = maps.exclude(id=showcase_map.pk)
|
|
||||||
|
|
||||||
maps = self.paginate(maps, settings.UMAP_MAPS_PER_PAGE)
|
maps = self.paginate(maps, settings.UMAP_MAPS_PER_PAGE)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue