diff --git a/rhodecode/templates/index.html b/rhodecode/templates/index.html --- a/rhodecode/templates/index.html +++ b/rhodecode/templates/index.html @@ -60,16 +60,16 @@
## TYPE OF REPO - %if repo['dbrepo'].repo_type =='hg': + %if repo['dbrepo']['repo_type'] =='hg': ${_('Mercurial repository')} - %elif repo['dbrepo'].repo_type =='git': + %elif repo['dbrepo']['repo_type'] =='git': ${_('Git repository')} %else: %endif ##PRIVATE/PUBLIC - %if repo['dbrepo'].private: + %if repo['dbrepo']['private']: ${_('private repository')} %else: ${_('public repository')} @@ -78,10 +78,10 @@ ##NAME ${h.link_to(repo['name'], h.url('summary_home',repo_name=repo['name']),class_="repo_name")} - %if repo['dbrepo'].fork: - + %if repo['dbrepo_fork']: + ${_('fork')} %endif