[FIX] website_blog: search by date for tags

bzr revid: chm@openerp.com-20131118103511-pcwp07slp5fu8dh9
This commit is contained in:
Christophe Matthieu 2013-11-18 11:35:11 +01:00
parent 46bcff4da6
commit 441428f99a
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@
<h4>Archives</h4>
<ul class="list-unstyled">
<li t-foreach="nav_list" t-as="months">
<a t-href="/blog/#{ category and 'cat/%s' % category.id or '' }/date/#{ months['date'] }"><t t-esc="months['create_date']"/></a>
<a t-href="/blog/#{ category and 'cat/%s/' % category.id or '' }#{ tag and 'tag/%s/' % tag.id or '' }date/#{ months['date'] }"><t t-esc="months['create_date']"/></a>
<span class="pull-right badge" t-esc="months['create_date_count']"/>
</li>
</ul>