Fix rendering on domain.html

This commit is contained in:
Brian Picciano 2023-07-18 18:31:36 +02:00
parent 7049252787
commit 87c779ebb6

View File

@ -22,17 +22,17 @@ automatically updated too!</p>
<form method="{{ form_method }}" action="/domain_init.html">
<input name="domain" type="hidden" value="{{ data.domain }}" />
<input name="config_origin_descr_kind" type="hidden" value="git" />
<input name="domain_setting_origin_descr_kind" type="hidden" value="git" />
<fieldset>
<legend>Git Repository</legend>
<p>
<label>
URL (HTTPS only):
<input name="config_origin_descr_git_url"
<input name="domain_setting_origin_descr_git_url"
type="text"
placeholder="https://example.com/some_repo.git"
value="{{ data.settings.origin_descr.Git.url }}"
value="{{ data.settings.url }}"
required />
</label>
</p>
@ -40,10 +40,10 @@ automatically updated too!</p>
<p>
<label>
Branch name:
<input name="config_origin_descr_git_branch_name"
<input name="domain_setting_origin_descr_git_branch_name"
type="text"
placeholder="main / master / etc..."
value="{{ data.settings.origin_descr.Git.branch_name }}"
value="{{ data.settings.branch_name }}"
required />
</label>
</p>