Files @ ce4b7023a492
Branch filter:

Location: kallithea/rhodecode/templates/admin/repos_groups/repos_groups.html

Marcin Kuzminski
diff parser: redefined operations stats for changes

- don't loose info about multiple operations like rename + chmod
- new Binary flag when dealing with binary file operations
- fixed diffs after mercurial 2.6 when GIT binary diffs were fixed
- added more tests for multiple operations

- refactored the way diffprocessor returns data. It's
now easier to extract type of operation on binary files
- diffprocessor doesn't append that information into the diff itself
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
    ${_('%s Group Dashboard') % c.group.group_name} &middot; ${c.rhodecode_name}
</%def>

<%def name="breadcrumbs()">
    <span class="groups_breadcrumbs">
    ${h.link_to(_(u'Home'),h.url('/'))}
    %if c.group.parent_group:
        &raquo; ${h.link_to(c.group.parent_group.name,h.url('repos_group_home',group_name=c.group.parent_group.group_name))}
    %endif
    &raquo; "${c.group.name}" ${_('with')}
    </span>
</%def>

<%def name="page_nav()">
    ${self.menu('repositories')}
</%def>

<%def name="main()">
        <%include file="/index_base.html" args="parent=self,short_repo_names=True"/>
</%def>