Changeset - 17dea2319028
[Not reviewed]
default
0 1 0
domruf - 8 years ago 2017-10-04 19:48:02
dominikruf@gmail.com
repos: move optional icons after name to better align text in table
1 file changed with 3 insertions and 5 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/data_table/_dt_elements.html
Show inline comments
 
@@ -14,16 +14,14 @@
 
    %>
 
  <div class="dt_repo ${'dt_repo_pending' if rstate == 'repo_state_pending' else ''}">
 
    ${base.repotag(rtype)}
 
    <a href="${h.url('edit_repo' if admin else 'summary_home', repo_name=name)}">
 
        ${get_name(name)}
 
    </a>
 
    %if private and c.visual.show_private_icon:
 
      <i class="icon-keyhole-circled" title="${_('Private repository')}"></i>
 
    %elif not private and c.visual.show_public_icon:
 
      <i class="icon-globe" title="${_('Public repository')}"></i>
 
    %else:
 
      <i class="icon-empty"></i>
 
    %endif
 
    <a href="${h.url('edit_repo' if admin else 'summary_home', repo_name=name)}">
 
        ${get_name(name)}
 
    </a>
 
    %if fork_of:
 
      <a href="${h.url('summary_home',repo_name=fork_of.repo_name)}"><i class="icon-fork"></i></a>
 
    %endif
0 comments (0 inline, 0 general)