6521680719
Fixed at the same time some bad English strings.
51 lines
1.5 KiB
HTML
51 lines
1.5 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>
|
|
</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}
|
|
{if $scm == 'git'}
|
|
<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>
|
|
{/if}
|
|
{if $scm == 'svn'}
|
|
<form class="star" action="{url 'IDF_Views_Source::changelogRev', array($project.shortname)}" method="get">
|
|
<p><strong>{trans 'Revision:'}</strong> {$commit}</p>
|
|
<p>
|
|
<input accesskey="4" type="text" value="{$commit}" name="rev" size="5" />
|
|
<input type="submit" name="s" value="{trans 'Go to revision'}" />
|
|
</p>
|
|
</form>
|
|
|
|
{/if}
|
|
{/block}
|
|
|