view rhodecode/templates/bookmarks/bookmarks.html @ 1770:184557472f5c beta

Implements #304 hashes in relevant places are displayed using monospaced font.
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 08 Dec 2011 04:32:42 +0200
parents a3ee2611e6e8
children eaf09acf6872
line wrap: on
line source

## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${c.repo_name} ${_('Bookmarks')} - ${c.rhodecode_name}
</%def>


<%def name="breadcrumbs_links()">
    <input class="q_filter_box" id="q_filter_bookmarks" size="15" type="text" name="filter" value="${_('quick filter...')}"/>
    ${h.link_to(u'Home',h.url('/'))}
    &raquo; 
    ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
    &raquo;
    ${_('bookmarks')}
</%def>

<%def name="page_nav()">
    ${self.menu('bookmarks')}
</%def>
<%def name="main()">
<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>
    <!-- end box / title -->
    <div class="table">
        <%include file='bookmarks_data.html'/>
    </div>
</div>
<script type="text/javascript">
var nodes = YUQ('div.table tr td .logtags .tagtag a');
var target = 'q_filter_bookmarks';
var func = function(node){
    return node.parentNode.parentNode.parentNode.parentNode;
}
q_filter(target,nodes,func);
</script>
</%def>