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

r4016:32709bda default
r4099:c12e69d0 default
Show More
user.mako
25 lines | 515 B | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282 <%inherit file="/base/base.mako"/>
<%def name="title()">
ui/user profiles: add better explanation of what we are viewing.
r2610 ${_('User')}: ${c.user.username}
templating: use .mako as extensions for template files.
r1282 %if c.rhodecode_name:
&middot; ${h.branding(c.rhodecode_name)}
%endif
</%def>
profiles: cleanup profile pages to not include side nav bar which didn't gave any purpose.
r4016 <%def name="breadcrumbs_links()"></%def>
templating: use .mako as extensions for template files.
r1282
<%def name="menu_bar_nav()">
user-profile: migrated to pyramid views.
r1502 ${self.menu_items(active='my_account')}
templating: use .mako as extensions for template files.
r1282 </%def>
<%def name="main()">
<div class="box">
profiles: cleanup profile pages to not include side nav bar which didn't gave any purpose.
r4016 <div style="min-height: 25px"></div>
templating: use .mako as extensions for template files.
r1282
<div class="main-content-full-width">
<%include file="/users/${c.active}.mako"/>
</div>
</div>
</%def>