Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docassemble/AssemblyLine/data/questions/al_document.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ code: |
# Used in the email subject line when email is triggered on download screen.
# This defaults to the interview title. For example, if the
# interview title is "Guardianship Helper", the email
# subject would be "Your Guardianship Helper document from CourtFormsOnline is ready".
# subject would be "Your Guardianship Helper document from docassemble is ready".
# Customize this if you prefer something like "Your guardianship document is ready"
x.document_label = str(
all_variables(special="titles").get(
Expand Down
4 changes: 2 additions & 2 deletions docassemble/AssemblyLine/data/questions/al_settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ code: |
# Set this to the name of your application
# Defaults to checking for a possible name from global docassemble config
al_app_name = get_config(
"appname", get_config("external hostname", "CourtFormsOnline.org")
"appname", get_config("external hostname", "docassemble")
)
---
code: |
# The name of your organization. Defaults to a similar value as `al_app_name`,
# but is still distinct
AL_ORGANIZATION_TITLE = get_config("appname", "CourtFormsOnline")
AL_ORGANIZATION_TITLE = get_config("appname", "docassemble")
---
code: |
AL_ORGANIZATION_HOMEPAGE = get_config("app homepage", "https://courtformsonline.org")
Expand Down
8 changes: 4 additions & 4 deletions docassemble/AssemblyLine/data/questions/interview_list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,15 +158,15 @@ default screen parts:
% elif showifdef("AL_ORGANIZATION_TITLE"):
${ AL_ORGANIZATION_TITLE }
% else:
${ get_config("app name", "CourtFormsOnline") }
${ get_config("appname", "docassemble") }
% endif
short title: |
% if PAGE_TITLE:
${ PAGE_TITLE }
% elif showifdef("AL_ORGANIZATION_TITLE"):
${ AL_ORGANIZATION_TITLE }
% else:
${ get_config("app name", "CourtFormsOnline") }
${ get_config("appname", "docassemble") }
% endif
title url: |
% if LOGO_URL:
Expand Down Expand Up @@ -197,7 +197,7 @@ default screen parts:
% elif showifdef("AL_ORGANIZATION_TITLE"):
<span class="title-row-1">${ AL_ORGANIZATION_TITLE }</span>
% else:
<span class="title-row-1">${ get_config("app name", "CourtFormsOnline") }</span>
<span class="title-row-1">${ get_config("appname", "docassemble") }</span>
% endif
% if LOGO_TITLE_ROW_2:
<span class="title-row-2">${ LOGO_TITLE_ROW_2 }</span>
Expand All @@ -223,7 +223,7 @@ default screen parts:
% elif showifdef("AL_ORGANIZATION_TITLE"):
<span class="title-row-1">${ AL_ORGANIZATION_TITLE }</span>
% else:
<span class="title-row-1">${ get_config("app name", "CourtFormsOnline") }</span>
<span class="title-row-1">${ get_config("appname", "docassemble") }</span>
% endif
% if LOGO_TITLE_ROW_2:
<span class="title-row-2">${ LOGO_TITLE_ROW_2 }</span>
Expand Down
Loading