##// END OF EJS Templates
fix(permissions): added a common way to update private flag via repo model...
fix(permissions): added a common way to update private flag via repo model - this allows to have a one and only one way to control the flag with the business logic shared - added test for that - changed view to use this method instead of DB update and custom permissions flush - fixed a case when update of repo settings didn't flush permissions actually while it should when private flag changed

File last commit:

r4026:ed756817 default
r5551:5b9b5ed2 default
Show More
hovercard_user.mako
24 lines | 635 B | application/x-mako | MakoHtmlLexer
<%namespace name="base" file="/base/base.mako"/>
<%namespace name="dt" file="/data_table/_dt_elements.mako"/>
<div class="user-hovercard">
<div class="user-hovercard-header">
</div>
<div class="user-hovercard-icon">
${base.gravatar(c.user.email, 64)}
</div>
<div class="user-hovercard-name">
<strong>${c.user.full_name_or_username}</strong> <br/>
<code>@${h.link_to_user(c.user.username)}</code>
<div class="user-hovercard-bio">${dt.render_description(c.user.description, c.visual.stylify_metatags)}</div>
</div>
<div class="user-hovercard-footer">
</div>
</div>