7383e18dff
For each tab, at the exception of the project home and the administration area, it possible to control the access rights if the user is anonymous, signed in, member or owner.
40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
{extends "source/base.html"}
|
|
{block docclass}yui-t1{assign $inChangeLog=true}{/block}
|
|
{block body}
|
|
<table summary="" class="tree-list">
|
|
<thead>
|
|
<tr>
|
|
<th>{trans 'Age'}</th>
|
|
<th>{trans 'Message'}</th>
|
|
{* <th>{trans 'Details'}</th> *}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach $changes as $change}
|
|
{aurl 'url', 'IDF_Views_Source::commit', array($project.shortname, $change.commit)}
|
|
<tr class="log">
|
|
<td><a href="{$url}">{$change.date|dateago:"wihtout"}</a></td>
|
|
<td>{issuetext $change.title, $request}{if $change.full_message}<br /><br />{issuetext $change.full_message, $request}{/if}</td>
|
|
</tr>
|
|
<tr class="extra">
|
|
<td colspan="2">
|
|
<div class="helptext right">{trans 'Commit:'} <a href="{$url}" class="mono">{$change.commit}</a>,
|
|
{trans 'by'} {$change.author|strip_tags} {* this remove the email address *}
|
|
</div>
|
|
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
{/block}
|
|
{block context}
|
|
<p><strong>{trans 'Branches:'}</strong><br />
|
|
{foreach $branches as $branch}
|
|
{aurl 'url', 'IDF_Views_Source::changeLog', array($project.shortname, $branch)}
|
|
<span class="label{if $commit == $branch} active{/if}"><a href="{$url}" class="label">{$branch}</a></span><br />
|
|
{/foreach}
|
|
</p>
|
|
{/block}
|
|
|