@@ -851,6 +851,9 @@
# Activate the static report layout (beta).
## has_report_enabled=false
+ # Activate the new grid layout system (beta).
+ ## use_gridster=false
+
[[engines]]
# [[[solr]]]
@@ -853,6 +853,9 @@
@@ -58,6 +58,13 @@ HAS_REPORT_ENABLED = Config(
type=coerce_bool
)
+USE_GRIDSTER = Config(
+ key="use_gridster",
+ help=_t("Activate the new grid layout system (beta)."),
+ default=False,
+ type=coerce_bool
+)
def get_properties():
if ENGINES.get():
@@ -17,6 +17,7 @@
<%!
from django.utils.translation import ugettext as _
+from dashboard.conf import USE_GRIDSTER
from desktop import conf
from desktop.views import commonheader, commonfooter, _ko, commonshare
%>