• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

allura


Commit MetaInfo

Révisionb0c3c52de2ed0f2d2db785db7480da4857c8bbc1 (tree)
l'heure2010-05-07 06:17:31
AuteurJenny Steele <jsteele@geek...>
CommiterJenny Steele

Message de Log

[#351] Tweaks to project list view

Change Summary

Modification

--- a/pyforge/pyforge/lib/widgets/templates/project_summary.html
+++ b/pyforge/pyforge/lib/widgets/templates/project_summary.html
@@ -6,8 +6,10 @@
66 <?python from itertools import islice ?>
77 <a href="${value.url()}"><img src="${value.icon and value.url()+'icon' or '/images/project_default.png'}" alt="$value.name Icon" class="fleft icon clear" /></a>
88 <h2><a href="${value.url()}">$value.name</a></h2>
9-<div py:for="author in islice(value.users(), 5)" class="gravatar sm">
10- ${gravatar(author.preferences.email_address, size=16)}<a href="${author.url()}">$author.display_name</a>
9+<div class="gravatar sm">
10+ <a href="${author.url()}" py:for="i,author in enumerate(islice(value.users(), 8))">
11+ ${gravatar(author.preferences.email_address, size=16)}<br py:if="i==3"/>
12+ </a>
1113 </div>
1214 <p>${h.text.truncate(value.short_description, 50)}<br />
1315 <a href="${accolade.award.longurl()}" py:for="accolade in value.accolades" title="$accolade.award.full"><small class="badge $accolade.award.short">$accolade.award.short</small></a>