diff --git a/web_interface/templates/v3/partials/starlark_config.html b/web_interface/templates/v3/partials/starlark_config.html index 353237cc..8be5d1fb 100644 --- a/web_interface/templates/v3/partials/starlark_config.html +++ b/web_interface/templates/v3/partials/starlark_config.html @@ -53,48 +53,50 @@ - - {% if schema %} +
-

App Configuration

+

Timing Settings

+
+
+ + +

How often the app re-renders (fetches new data)

+
+
+ + +

How long the app displays before rotating

+
+
+ + {% if schema or config %} +
+

App Settings

{% for key, value in config.items() %} + {% if key not in ('render_interval', 'display_duration') %}
+ {% endif %} {% endfor %} + {% endif %} +
- {% elif config %} -
-

App Configuration

-
- {% for key, value in config.items() %} -
- - -
- {% endfor %} - -
-
- {% else %} -
- This app has no configurable settings. -
- {% endif %}