indefero/src/IDF/templates/source/changelog.html

51 lines
1.5 KiB
HTML
Raw Normal View History

{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}
2008-07-28 20:09:17 +00:00
{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:'}&nbsp;<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}
2008-08-29 17:50:10 +00:00
{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>
2008-08-29 17:50:10 +00:00
{/if}
{if $scm == 'svn'}
2008-08-29 18:38:13 +00:00
<form class="star" action="{url 'IDF_Views_Source::changelogRev', array($project.shortname)}" method="get">
<p><strong>{trans 'Revision:'}</strong> {$commit}</p>
2008-08-29 18:38:13 +00:00
<p>
<input accesskey="4" type="text" value="{$commit}" name="rev" size="5" />
2008-08-29 17:50:10 +00:00
<input type="submit" name="s" value="{trans 'Go to revision'}" />
</p>
2008-08-29 18:38:13 +00:00
</form>
2008-08-29 17:50:10 +00:00
{/if}
{/block}