changeset 6394:e102408574e9

templates: fix malformed tag closings
author Mads Kiilerich <mads@kiilerich.com>
date Fri, 06 Jan 2017 01:43:50 +0100
parents 4fa8b2ca0508
children c4379e4dc820
files kallithea/templates/admin/repos/repo_edit_settings.html kallithea/templates/changeset/changeset_file_comment.html
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/admin/repos/repo_edit_settings.html	Fri Jan 06 01:43:50 2017 +0100
+++ b/kallithea/templates/admin/repos/repo_edit_settings.html	Fri Jan 06 01:43:50 2017 +0100
@@ -8,7 +8,7 @@
                     ${h.text('repo_name',class_='form-control')}
                     <span class="help-block">${_('Permanent Repository ID')}: `_${c.repo_info.repo_id}` <span><a id="show_more_clone_id" href="#">${_('What is that?')}</a></span></span>
                     <span id="clone_id" class="help-block" style="display: none">
-                        ${_('URL by id')}: `${c.repo_info.clone_url(with_id=True)}` </br>
+                        ${_('URL by id')}: `${c.repo_info.clone_url(with_id=True)}`<br/>
                         ${_('''In case this repository is renamed or moved into another group the repository URL changes.
                                Using the above permanent URL guarantees that this repository always will be accessible on that URL.
                                This is useful for CI systems, or any other cases that you need to hardcode the URL into a 3rd party service.''')}</span>
--- a/kallithea/templates/changeset/changeset_file_comment.html	Fri Jan 06 01:43:50 2017 +0100
+++ b/kallithea/templates/changeset/changeset_file_comment.html	Fri Jan 06 01:43:50 2017 +0100
@@ -75,7 +75,7 @@
                 %for status, lbl in c.changeset_statuses:
                     <label class="radio-inline">
                         <input type="radio" class="status_change_radio" name="changeset_status" id="${status}" value="${status}">
-                        ${lbl}<i class="icon-circle changeset-status-${status}" /></i>
+                        ${lbl}<i class="icon-circle changeset-status-${status}"></i>
                     </label>
                 %endfor