##// END OF EJS Templates
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case....
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case. Usually WIP in title means unfinished task that needs still some work. This pattern is present in Gitlab/Github and is already quite common.

File last commit:

r4085:9acdcb39 default
r4099:c12e69d0 default
Show More
files_tree_header.mako
49 lines | 1.7 KiB | application/x-mako | MakoHtmlLexer
files: restructure the files views for easier restyling
r3648 <%namespace name="base" file="/base/base.mako"/>
<%namespace name="file_base" file="/files/base.mako"/>
Liviu
styled the files summary box
r3649 <div class="summary">
<div class="fieldset">
<div class="left-content">
ui: fixed tooltips for headers in files/commits.
r4085 <%
rc_user = h.discover_user(c.commit.author_email)
%>
Liviu
files avatar in front of message and rounded gravatars
r3650 <div class="left-content-avatar">
ui: fixed tooltips for headers in files/commits.
r4085 ${base.gravatar(c.commit.author_email, 30, tooltip=(True if rc_user else False), user=rc_user)}
Liviu
styled the files summary box
r3649 </div>
Liviu
files avatar in front of message and rounded gravatars
r3650 <div class="left-content-message">
<div class="fieldset collapsable-content no-hide" data-toggle="summary-details">
<div class="commit truncate-wrap">${h.urlify_commit_message(h.chop_at_smart(c.commit.message, '\n', suffix_if_chopped='...'), c.repo_name)}</div>
</div>
<div class="fieldset collapsable-content" data-toggle="summary-details">
<div class="commit">${h.urlify_commit_message(c.commit.message,c.repo_name)}</div>
</div>
Liviu
adjusted the padding of path and summary box between files and file details screens
r3720 <div class="fieldset clear-fix">
Liviu
file details view summary box changes, not yet finnished
r3653 <span class="commit-author">${h.link_to_user(c.commit.author)}</span><span class="commit-date"> - ${h.age_component(c.commit.date)}</span>
Liviu
files avatar in front of message and rounded gravatars
r3650 </div>
Liviu
styled the files summary box
r3649 </div>
</div>
<div class="right-content">
ui: new commits page....
r3882 <div class="tags">
Liviu
styled the files summary box
r3649 <code>
<a href="${h.route_path('repo_commit',repo_name=c.repo_name,commit_id=c.commit.raw_id)}">${h.show_id(c.commit)}</a>
</code>
ui: new commits page....
r3882 <i class="tooltip icon-clipboard clipboard-action" data-clipboard-text="${c.commit.raw_id}" title="${_('Copy the full commit id')}"></i>
Liviu
styled the files summary box
r3649 ${file_base.refs(c.commit)}
</div>
</div>
Liviu
file details view summary box changes, not yet finnished
r3653
<div class="clear-fix"></div>
Liviu
styled the files summary box
r3649
Liviu
file details view summary box changes, not yet finnished
r3653 <div class="btn-collapse" data-toggle="summary-details">
${_('Show More')}
</div>
files: restructure the files views for easier restyling
r3648 </div>
</div>
<script>
collapsableContent();
</script>