diff --git a/progit/static/progit.css b/progit/static/progit.css index 70004b1..1780bca 100644 --- a/progit/static/progit.css +++ b/progit/static/progit.css @@ -374,6 +374,7 @@ table.list tr:hover td .tree_list li:hover a, .commit_list li:hover a, .commit_list li:hover > a > span.commitid, +.commit_list li:hover > a > span.commitdate, .tree_list li:hover > a > span.filehex, table.list tr:hover td > a { @@ -394,6 +395,13 @@ table.list tbody td > a width: 5em; } +.commit_list li > a > span.commitdate +{ + color: #4d4d4d; + display: inline-block; + float: right; +} + .pr { float: right; } diff --git a/progit/templates/repo_info.html b/progit/templates/repo_info.html index 982c7c2..ef189f1 100644 --- a/progit/templates/repo_info.html +++ b/progit/templates/repo_info.html @@ -121,6 +121,9 @@ * {% endif %} {{ commit.message.split('\n')[0] }} + + {{ commit.commit_time|humanize }} + {% endfor %}