Files @ 7bca124ef278
Branch filter:

Location: kallithea/kallithea/templates/search/search_path.html

mads
style: drop dynamic width of repo summary labels - it should be the same no matter if statistics is shown or not
##path search

%for cnt,sr in enumerate(c.formated_results):
    %if h.HasRepoPermissionLevel('read')(sr['repository'],'search results check'):
        <div class="panel panel-default">
            <div class="panel-heading">
                ${h.link_to(h.literal('%s &raquo; %s' % (sr['repository'],sr['f_path'])),
                    h.url('files_home',repo_name=sr['repository'],revision='tip',f_path=sr['f_path']))}
            </div>
        </div>
    %else:
        %if cnt == 0:
            <div class="error">
                <div class="link">
                    ${_('Permission denied')}
                </div>
            </div>
        %endif

    %endif
%endfor
%if c.cur_query and c.formated_results:
    <ul class="pagination">
        ${c.formated_results.pager()}
    </ul>
%endif