##// 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:

r4026:ed756817 default
r4099:c12e69d0 default
Show More
file_authors_box.mako
40 lines | 1.3 KiB | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282 <%namespace name="base" file="/base/base.mako"/>
% if c.authors:
files: make authors box a table
r3697
<table class="sidebar-right-content">
files: ported repository files controllers to pyramid views.
r1927 % for email, user, commits in sorted(c.authors, key=lambda e: c.file_last_commit.author_email!=e[0]):
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 <tr class="file_author">
files: make authors box a table
r3697 <td>
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 <%
rc_user = h.discover_user(user)
%>
files: expose gravatar into authors on dynamic load
r3714 % if not c.file_author:
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 ${base.gravatar(email, 16, user=rc_user, tooltip=True)}
files: expose gravatar into authors on dynamic load
r3714 % endif
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 <span class="user commit-author">${h.link_to_user(rc_user or user)}</span>
files: ported repository files controllers to pyramid views.
r1927 % if c.file_author:
Liviu
file details view summary box changes, not yet finnished
r3653 <span class="commit-date">- ${h.age_component(c.file_last_commit.date)}</span>
js: refactor js and move logic to files.js
r3713 <a href="#ShowAuthors" onclick="showAuthors(this, ${("1" if c.annotate else "0")}); return false" class="action_link"> - ${_('Load All Authors')}</a>
files: ported repository files controllers to pyramid views.
r1927 % elif c.file_last_commit.author_email==email:
<span> (${_('last author')})</span>
% endif
files: make authors box a table
r3697 </td>
files: ported repository files controllers to pyramid views.
r1927
files: make authors box a table
r3697 <td>
files: ported repository files controllers to pyramid views.
r1927 % if not c.file_author:
files: make authors box a table
r3697 <code>
files: ported repository files controllers to pyramid views.
r1927 % if commits == 1:
${commits} ${_('Commit')}
% else:
${commits} ${_('Commits')}
% endif
files: make authors box a table
r3697 </code>
files: ported repository files controllers to pyramid views.
r1927 % endif
files: make authors box a table
r3697 </td>
</tr>
files: updated based on new design
r3706
templating: use .mako as extensions for template files.
r1282 % endfor
files: make authors box a table
r3697 </table>
templating: use .mako as extensions for template files.
r1282 % endif
files: make authors box a table
r3697