1 <%page args="update" />
3 <div class="frontpage-update">
5 <div class="category"><img src="${h.static_uri('spline', "icons/{0}.png".format('gear--pencil'))}" alt=""> ${update.category}:</div>
6 <div class="date">${update.time}</div>
7 <div class="title">${update.tag}</div>
10 <table class="frontpage-repository striped-rows">
11 <% last_repo = None %>\
12 % for commit in update.log:
13 % if commit.repo != last_repo:
14 <tr class="frontpage-repository-header">
15 <th colspan="4">${commit.repo}</th>
20 <td class="hash"><a href="${update.gitweb}?p=${commit.repo}.git;a=commit;h=${commit.hash}">${commit.hash}</a></td>
21 <td class="author">${commit.author}</td>
22 <td class="subject">${commit.subject}</td>
23 <td class="time">${commit.time}</td>
25 <% last_repo = commit.repo %>\