From d2f56ad7c6a7283595500c952f61c76928b99dab Mon Sep 17 00:00:00 2001 From: magdev Date: Sun, 10 Dec 2023 10:46:17 +0100 Subject: [PATCH] added welcome page to admin --- app/views/admin/_welcome.html.erb | 3 +++ app/views/admin/index.html.erb | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 app/views/admin/_welcome.html.erb create mode 100644 app/views/admin/index.html.erb diff --git a/app/views/admin/_welcome.html.erb b/app/views/admin/_welcome.html.erb new file mode 100644 index 0000000..6b850c8 --- /dev/null +++ b/app/views/admin/_welcome.html.erb @@ -0,0 +1,3 @@ +
+

Hello

+
diff --git a/app/views/admin/index.html.erb b/app/views/admin/index.html.erb new file mode 100644 index 0000000..42c6741 --- /dev/null +++ b/app/views/admin/index.html.erb @@ -0,0 +1,9 @@ +

<%=l(:label_administration)%>

+ +
+ <%= render :partial => 'no_data' if @no_configuration_data %> + <%= render :partial => 'welcome' %> + <%= render :partial => 'menu' %> +
+ +<% html_title(l(:label_administration)) -%>