##// END OF EJS Templates
Complete copyright notices for web interface; change footer to link to them....
Complete copyright notices for web interface; change footer to link to them. The original copyright notice found in the footer was not accurate as it included only one of the many copyright holders in this project. This change creates an "about" page, which currently contains just the copyright and license information. It links to repository for additional potential copyright holders not listed on the about page. Unlisted contributors are mentioned in template comments. Html links for Kallithea is fixed and we link to Conservancy. Display of version information in the footer is improved.

File last commit:

r3780:1de8abd9 beta
r4178:9dd72670 kallithea-2.2.5-r...
Show More
pull_request_comment.html
17 lines | 476 B | text/html | HtmlLexer
part2 of pull-request notification improvements
r2802 ## -*- coding: utf-8 -*-
<%inherit file="main.html"/>
Mads Kiilerich
emails: try to improve wording and layout - 1st iteration
r3780
<p>${_('URL')}: <a href="${pr_comment_url}">${pr_comment_url}</a></p>
<h4>${_('%s commented on pull request "%s"') % (pr_comment_user,pr_title) |n}</h4>
part2 of pull-request notification improvements
r2802
%if status_change:
codecleaner, fix tabs -> spaces
r3449 %if closing_pr:
Mads Kiilerich
emails: try to improve wording and layout - 1st iteration
r3780 <p>${_('Pull request was closed with status')}: <b>${status_change}</b></p>
codecleaner, fix tabs -> spaces
r3449 %else:
Mads Kiilerich
emails: try to improve wording and layout - 1st iteration
r3780 <p>${_('Pull request changed status')}: <b>${status_change}</b></p>
codecleaner, fix tabs -> spaces
r3449 %endif
part2 of pull-request notification improvements
r2802 %endif
Mads Kiilerich
emails: try to improve wording and layout - 1st iteration
r3780
<p>${_('Comment')}:</p>
<p>${body}</p>