Files @ fd2dff0588bc
Branch filter:

Location: kallithea/rhodecode/templates/admin/user_groups/user_group_edit_members.html

Bradley M. Kuhn
Introduce LICENSE.md to include license information about Bootstrap 3.0.0

This creates a LICENSE.md file which will ultimately contain all relevant
licensing information for the project, but for the moment just contains
information about Boostrap 3.0.0 licensed under Apache License 2.0.

A copy of the Apache license is also herein included.
<div class="group_members_wrap">
% if c.group_members_obj:
  <ul class="group_members">
  %for user in c.group_members_obj:
    <li>
      <div class="group_member">
        <div class="gravatar"><img alt="gravatar" src="${h.gravatar_url(user.email,24)}"/> </div>
        <div>${h.link_to(user.username, h.url('edit_user',id=user.user_id))}</div>
        <div>${user.full_name}</div>
      </div>
    </li>
  %endfor
  </ul>
  %else:
    <span class="empty_data">${_('No members yet')}</span>
  %endif
</div>