Root/
| Source at commit 7383e18dff19e7e6a1e56d55cdfbfa109e91bfb3 created 2 years 1 month ago. By Loic d'Anterroches, Fixed issue 4, with fine control over the tabs access. | |
|---|---|
| 1 | {extends "source/base.html"} |
| 2 | {block docclass}yui-t1{assign $inChangeLog=true}{/block} |
| 3 | {block body} |
| 4 | <table summary="" class="tree-list"> |
| 5 | <thead> |
| 6 | <tr> |
| 7 | <th>{trans 'Age'}</th> |
| 8 | <th>{trans 'Message'}</th> |
| 9 | {* <th>{trans 'Details'}</th> *} |
| 10 | </tr> |
| 11 | </thead> |
| 12 | <tbody> |
| 13 | {foreach $changes as $change} |
| 14 | {aurl 'url', 'IDF_Views_Source::commit', array($project.shortname, $change.commit)} |
| 15 | <tr class="log"> |
| 16 | <td><a href="{$url}">{$change.date|dateago:"wihtout"}</a></td> |
| 17 | <td>{issuetext $change.title, $request}{if $change.full_message}<br /><br />{issuetext $change.full_message, $request}{/if}</td> |
| 18 | </tr> |
| 19 | <tr class="extra"> |
| 20 | <td colspan="2"> |
| 21 | <div class="helptext right">{trans 'Commit:'} <a href="{$url}" class="mono">{$change.commit}</a>, |
| 22 | {trans 'by'} {$change.author|strip_tags} {* this remove the email address *} |
| 23 | </div> |
| 24 | |
| 25 | </td> |
| 26 | </tr> |
| 27 | {/foreach} |
| 28 | </tbody> |
| 29 | </table> |
| 30 | {/block} |
| 31 | {block context} |
| 32 | <p><strong>{trans 'Branches:'}</strong><br /> |
| 33 | {foreach $branches as $branch} |
| 34 | {aurl 'url', 'IDF_Views_Source::changeLog', array($project.shortname, $branch)} |
| 35 | <span class="label{if $commit == $branch} active{/if}"><a href="{$url}" class="label">{$branch}</a></span><br /> |
| 36 | {/foreach} |
| 37 | </p> |
| 38 | {/block} |
| 39 | |
| 40 | |
