Trying to decouple this h1 from the templates folder structure

This commit is contained in:
Jonathan Bobel
2024-12-02 12:09:43 -05:00
parent 6218d3eadd
commit 994a314f31
4 changed files with 30 additions and 30 deletions

View File

@@ -456,7 +456,7 @@ class Service(JSONModel, SortByNameMixin):
if folder_id is None:
return {
"id": None,
"name": "Select or create a template",
"name": "Templates",
"parent_id": None,
}
return self._get_by_id(self.all_template_folders, folder_id)

View File

@@ -8,7 +8,7 @@
{% extends "withnav_template.html" %}
{% set page_title = 'Templates' %}
{% set page_title = 'Select or create a template' %}
{% block service_page_title %}
{{ page_title_folder_path(template_folder_path) }}