2008-11-18 09:15:02 +01:00
|
|
|
{extends "idf/base.html"}
|
2008-12-03 15:00:47 +01:00
|
|
|
{block extraheader}<link rel="alternate" type="application/atom+xml" title="{trans 'Latest updates'}" href="{$feedurl}"/>{/block}
|
2008-08-02 22:52:11 +02:00
|
|
|
{block docclass}yui-t2{/block}
|
2008-07-29 21:18:02 +02:00
|
|
|
{block tabhome} class="active"{/block}
|
|
|
|
{block subtabs}
|
|
|
|
<div id="sub-tabs">
|
2010-10-09 11:53:01 +00:00
|
|
|
<a href="{url 'IDF_Views_Project::home', array($project.shortname)}">{trans 'Welcome'}</a> | <strong><a href="{url 'IDF_Views_Project::timeline', array($project.shortname, 'all')}" class="active">{trans 'Latest Updates'}</a></strong>{superblock}
|
2008-07-29 21:18:02 +02:00
|
|
|
</div>
|
|
|
|
{/block}
|
2008-11-15 11:31:43 +01:00
|
|
|
|
2008-11-18 09:15:02 +01:00
|
|
|
{block body}
|
2008-11-15 11:31:43 +01:00
|
|
|
{$timeline.render}
|
2008-07-29 21:18:02 +02:00
|
|
|
{/block}
|
2008-11-15 11:31:43 +01:00
|
|
|
|
2008-07-29 21:18:02 +02:00
|
|
|
{block context}
|
2011-03-15 22:54:35 +01:00
|
|
|
<p><span class="label{if 'all' == $model_filter} active{/if}"><a href="{url 'IDF_Views_Project::timeline', array($project.shortname, 'all')}">{trans 'All Updates'}</a></span></p>
|
2010-10-09 11:53:01 +00:00
|
|
|
<p><strong>{trans 'Filter by type'}</strong><br />
|
2011-03-30 00:12:07 +02:00
|
|
|
{foreach $accessible_model_filters as $filter_key => $filter_name}
|
2011-03-15 22:54:35 +01:00
|
|
|
{if $filter_key != 'all'}
|
2010-10-09 11:53:01 +00:00
|
|
|
<span class="label{if $filter_key == $model_filter} active{/if}"><a href="{url 'IDF_Views_Project::timeline', array($project.shortname, $filter_key)}">{$filter_name}</a></span><br />
|
2011-03-15 22:54:35 +01:00
|
|
|
{/if}
|
2008-08-05 20:33:43 +02:00
|
|
|
{/foreach}
|
2008-07-29 21:18:02 +02:00
|
|
|
</p>
|
2011-05-16 23:49:08 +02:00
|
|
|
<p><strong>{trans 'Subscribe to this timeline'}</strong><br />
|
|
|
|
<span class="label"><img src="{media '/idf/img/rss.png'}" alt="{trans 'RSS'}" /> <a href="{$feedurl}">{trans 'Atom feed'}</a></span>
|
|
|
|
</p>
|
2008-07-29 21:18:02 +02:00
|
|
|
{/block}
|
|
|
|
|
|
|
|
|