##// END OF EJS Templates
git: use force fetch and update for target ref. This solves a case...
git: use force fetch and update for target ref. This solves a case when in PRs a target is force updated and is out of sync. Before we used a pull which --ff-only fails obviosly because two are out of sync. This change uses new logic that resets the target branch according to the source target branch allowing smooth merge simulation.

File last commit:

r2638:01feb8aa default
r2784:e8c62649 default
Show More
profile.mako
69 lines | 2.8 KiB | application/x-mako | MakoHtmlLexer
<%namespace name="base" file="/base/base.mako"/>
<div class="panel panel-default user-profile">
<div class="panel-heading">
<h3 class="panel-title">${_('User group profile')}</h3>
%if h.HasPermissionAny('hg.admin')():
${h.link_to(_('Edit'), h.route_path('edit_user_group', user_group_id=c.user_group.users_group_id), class_='panel-edit')}
%endif
</div>
<div class="panel-body user-profile-content">
<div class="fieldset">
<div class="left-label">
${_('Group Name')}:
</div>
<div class="right-content">
${c.user_group.users_group_name}
</div>
</div>
<div class="fieldset">
<div class="left-label">
${_('Owner')}:
</div>
<div class="group_member">
${base.gravatar(c.user_group.user.email, 16)}
<span class="username user">${h.link_to_user(c.user_group.user)}</span>
</div>
</div>
<div class="fieldset">
<div class="left-label">
${_('Active')}:
</div>
<div class="right-content">
${c.user_group.users_group_active}
</div>
</div>
% if not c.anonymous:
<div class="fieldset">
<div class="left-label">
${_('Members')}:
</div>
<div class="right-content">
<table id="group_members_placeholder" class="rctable group_members">
<th>${_('Username')}</th>
% if c.group_members:
% for user in c.group_members:
<tr>
<td id="member_user_${user.user_id}" class="td-author">
<div class="group_member">
${base.gravatar(user.email, 16)}
<span class="username user">${h.link_to(h.person(user), h.route_path('user_edit',user_id=user.user_id))}</span>
<input type="hidden" name="__start__" value="member:mapping">
<input type="hidden" name="member_user_id" value="${user.user_id}">
<input type="hidden" name="type" value="existing" id="member_${user.user_id}">
<input type="hidden" name="__end__" value="member:mapping">
</div>
</td>
</tr>
% endfor
% else:
<tr><td colspan="2">${_('No members yet')}</td></tr>
% endif
</table>
</div>
</div>
% endif
</div>
</div>