Hash :
49a75f73
Author :
Thomas de Grivel
Date :
2023-08-30T12:16:26
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
<div class="container-fluid">
<div class="row">
<div class="col">
<%= render("show_title.html", assigns) %>
</div>
</div>
<div class="row">
<div class="col">
<%= if @path do %>
<hr/>
<h2><%= link @path, to: Routes.repository_path(@conn, :show, Repository.owner_slug(@repo), Repository.splat(@repo, ["_tree", @tree] ++ String.split(@path, "/"))) %></h2>
<% end %>
<%= render("show_branch.html", assigns) %>
<hr/>
<h3><%= gettext("Log") %></h3>
<table class="git-log table">
<thead>
<tr>
<th class="author"><%= gettext "Author" %></th>
<th class="commit"><%= gettext "Commit" %></th>
<th class="date"><%= gettext "Date" %></th>
<th class="ci"><%= gettext "CI" %></th>
<th class="message"><%= gettext "Message" %></th>
</tr>
</thead>
<tbody>
<%= for commit <- @log do %>
<tr class="commit">
<td class="author">
<%= render(KmxgitWeb.UserView, "avatar.html", conn: @conn, email: commit.author_email, size: 48, title: commit.author, class: "") %>
</td>
<td class="hash">
<%= link String.slice(commit.hash, 0..7), id: commit.hash, to: Routes.repository_path(@conn, :show, Repository.owner_slug(@repo), Repository.splat(@repo, ["_commit", commit.hash])) %>
</td>
<td class="date">
<%= NaiveDateTime.add(~N[1970-01-01 00:00:00], commit.date) %>
</td>
<td class="ci">
<%= if File.exists?("priv/ci/#{Repository.full_slug(@repo)}/ci/log/rbpkg_ci.#{@repo.slug}.commit_#{commit.hash}.html") do %>
<% ci_status_path = Routes.repository_path(@conn, :show, Repository.owner_slug(@repo), Repository.splat(@repo, ["_ci", "ci", "log", "rbpkg_ci.#{@repo.slug}.commit_#{commit.hash}.html"])) %>
<%= link to: ci_status_path do %>
<img src={"/_images/status_#{commit.ci_status}.32.png"} alt={commit.ci_status} class="status-#{@git.log1.ci_status}" />
<% end %>
<% end %>
</td>
<td class="message" %>
<%= commit.message %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>
</div>