Blob of app/views/logs/_ac_log.html.erb (raw blob data)

1 <ul style='list-style-type: none; margin: 0px;'>
2 <% @commits.each do |commit| -%>
3 <li class="commit_item">
4 <a href=""><%= link_to h(commit.id_abbrev), project_repository_commit_path(@project, @repository, commit.id) -%></a>
5 by <strong><%=h commit.committer.name -%></strong> <span class='small_grey'><%= format_datetime_ddmmyyhhmm(commit.committed_date) %> (<%=h time_ago_in_words(commit.committed_date) -%> ago)</span>
6 <div class="commit_message"><%= simple_format(h(commit.message)) -%></div>
7 </li>
8 <% end -%>
9 </ul>