Show More
@@ -229,7 +229,7 b' class RepoModel(BaseModel):' | |||
|
229 | 229 | def last_rev(repo_name, cs_cache): |
|
230 | 230 | return _render('revision', repo_name, cs_cache.get('revision'), |
|
231 | 231 | cs_cache.get('raw_id'), cs_cache.get('author'), |
|
232 | cs_cache.get('message')) | |
|
232 | cs_cache.get('message'), cs_cache.get('date')) | |
|
233 | 233 | |
|
234 | 234 | def desc(desc): |
|
235 | 235 | return _render('repo_desc', desc, c.visual.stylify_metatags) |
@@ -128,10 +128,10 b'' | |||
|
128 | 128 | ${h.age_component(last_change)} |
|
129 | 129 | </%def> |
|
130 | 130 | |
|
131 | <%def name="revision(name,rev,tip,author,last_msg)"> | |
|
131 | <%def name="revision(name,rev,tip,author,last_msg, commit_date)"> | |
|
132 | 132 | <div> |
|
133 | 133 | %if rev >= 0: |
|
134 |
<code><a title="${h.tooltip('%s |
|
|
134 | <code><a title="${h.tooltip('%s\n%s\n\n%s' % (author, commit_date, last_msg))}" class="tooltip" href="${h.route_path('repo_commit',repo_name=name,commit_id=tip)}">${'r%s:%s' % (rev,h.short_id(tip))}</a></code> | |
|
135 | 135 | %else: |
|
136 | 136 | ${_('No commits yet')} |
|
137 | 137 | %endif |
General Comments 0
You need to be logged in to leave comments.
Login now