{* |
{* |
* projlist_item.tpl |
* projlist_item.tpl |
* gitphp: A PHP git repository browser |
* gitphp: A PHP git repository browser |
* Component: Project list item template |
* Component: Project list item template |
* |
* |
* Copyright (C) 2006 Christopher Han <xiphux@gmail.com> |
* Copyright (C) 2006 Christopher Han <xiphux@gmail.com> |
*} |
*} |
<tr class="{$class}"> |
<tr class="{$class}"> |
<td> |
<td> |
{if $idt}<span style="white-space:pre;"> {/if}<a href="{$SCRIPT_NAME}?p={$project}&a=summary" class="list">{$project}</a>{if $idt}</span>{/if} |
{if $idt}<span style="white-space:pre;"> {/if}<a href="{$SCRIPT_NAME}?p={$project}&a=summary" class="list">{$project}</a>{if $idt}</span>{/if} |
</td> |
</td> |
<td>{$descr}</td> |
<td>{$descr}</td> |
<td><i>{$owner}</i></td> |
<td><i>{$owner}</i></td> |
<td> |
<td> |
{if $age_colored} |
{if $age_colored} |
<span style="color: #009900;"> |
<span style="color: #009900;"> |
{/if} |
{/if} |
{if $age_bold} |
{if $age_bold} |
<b> |
<b> |
{/if} |
{/if} |
<i> |
<i> |
{$age_string} |
{$age_string} |
</i> |
</i> |
{if $age_bold} |
{if $age_bold} |
</b> |
</b> |
{/if} |
{/if} |
{if $age_colored} |
{if $age_colored} |
</span> |
</span> |
{/if} |
{/if} |
</td> |
</td> |
<td class="link"><a href="{$SCRIPT_NAME}?p={$project}&a=summary">summary</a> | <a href="{$SCRIPT_NAME}?p={$project}&a=shortlog">shortlog</a> | <a href="{$SCRIPT_NAME}?p={$project}&a=log">log</a> | <a href="{$SCRIPT_NAME}?p={$project}&a=snapshot&h=HEAD">snapshot</a></td> |
<td class="link"><a href="{$SCRIPT_NAME}?p={$project}&a=summary">summary</a> | <a href="{$SCRIPT_NAME}?p={$project}&a=shortlog">shortlog</a> | <a href="{$SCRIPT_NAME}?p={$project}&a=log">log</a> | <a href="{$SCRIPT_NAME}?p={$project}&a=tree">tree</a> | <a href="{$SCRIPT_NAME}?p={$project}&a=snapshot&h=HEAD">snapshot</a></td> |
</tr> |
</tr> |
|
|