From 8b2c9ec338b85d61a16d299d855cc3cfb08c2015 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Mon, 19 Aug 2024 19:25:01 -0500 Subject: [PATCH] Change docs on overriding assets to YAML syntax --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 50973d9..b9eb306 100644 --- a/README.rst +++ b/README.rst @@ -354,11 +354,11 @@ descriptions: Assets can be overridden in the configuration file with ``pgwui.override_asset``:: - pgwui.override_asset = - # Syntax is: asset_to_override = override_with + pgwui.override_asset: + # Syntax is: asset_to_override: override_with # Paths must be fully qualified. - pgwui_common:static/pgwui.css = /var/www/custom/static/my.css - pgwui_logout:templates/logout.mak = /var/www/custom/templates/mylogout.mak + pgwui_common:static/pgwui.css: /var/www/custom/static/my.css + pgwui_logout:templates/logout.mak: /var/www/custom/templates/mylogout.mak When overriding assets it is probably best to start with a copy of the original file taken from the source code and make changes from there. -- 2.34.1