##// END OF EJS Templates
Gist small ui improvements on listing
marcink -
r3851:24e479e2 beta
parent child Browse files
Show More
@@ -38,11 +38,14 b''
38 38 <div class="gist-item" style="padding:10px 20px 10px 15px">
39 39
40 40 <div class="gravatar">
41 <img alt="gravatar" src="${h.gravatar_url(h.email_or_none(gist.owner.full_contact),24)}"/>
41 <img alt="gravatar" src="${h.gravatar_url(h.email_or_none(gist.owner.full_contact),28)}"/>
42 42 </div>
43 <div title="${gist.owner.full_contact}" class="user">
43 <div title="${gist.owner.full_contact}" class="user" style="font-size: 16px">
44 44 <b>${h.person(gist.owner.full_contact)}</b> /
45 45 <b><a href="${h.url('gist',id=gist.gist_access_id)}">gist:${gist.gist_access_id}</a></b>
46 </div>
47 <div style="padding: 4px 0px 0px 0px">
48 ${_('Created')} ${h.age(gist.created_on)} /
46 49 <span style="color: #AAA">
47 50 %if gist.gist_expires == -1:
48 51 ${_('Expires')}: ${_('never')}
@@ -51,10 +54,8 b''
51 54 %endif
52 55 </span>
53 56 </div>
54 <div>${_('Created')} ${h.age(gist.created_on)}
55 </div>
56 57
57 <div style="border:0px;padding:10px 0px 0px 35px;color:#AAA">${gist.gist_description}</div>
58 <div style="border:0px;padding:10px 0px 0px 40px;color:#AAA">${gist.gist_description}</div>
58 59 </div>
59 60 % endfor
60 61
General Comments 0
You need to be logged in to leave comments. Login now