From dcea58e3895d0d6a17c86d0cf8964efbd9fedeaf Mon Sep 17 00:00:00 2001 From: Vicente Olivert Riera Date: Fri, 24 Jun 2022 17:30:44 +0900 Subject: [PATCH] Refresh the Home page when it's empty Before, when the Home page was empty it just included a small text linking to the services and data sources. Now it has a more friendly headline, a bigger font to improve readability, and a new link for directly creating a service. This new link will save the user from having to navigate to the "Services" page in order to create its first service. --- promgen/templates/promgen/home.html | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/promgen/templates/promgen/home.html b/promgen/templates/promgen/home.html index 3fbf26c1e..e2b919a30 100644 --- a/promgen/templates/promgen/home.html +++ b/promgen/templates/promgen/home.html @@ -6,12 +6,17 @@ {% include "promgen/service_header.html" %} {% include "promgen/service_block.html" %} {% empty %} -

No Subscriptions Found

-

- Try Subscribing to some notifications from the - Service or - Datasource menu -

+ +

+ Get started by subscribing to notifications from an existing + service or check out the list of + data sources. +

+

+ Or, if you want, register a new service. +

{% endfor %} {% endblock %}