rosa-build/app/views/git/repositories/show.html.haml

34 lines
1.1 KiB
Plaintext

.row= link_to "Commits", commits_path(@platform, @repository, @project, :treeish => @treeish)
.row.tags
%h3 Tags:
%ul
- @git_repository.tags.each do |tag|
%li= link_to tag.name, tree_path(@platform, @repository, @project, :treeish => tag.name)
.row.heads
%h3 Heads:
%ul
- @git_repository.heads.each do |head|
%li= link_to head.name, tree_path(@platform, @repository, @project, :treeish => head.name)
%table
%thead
%tr
%th name
%th age
%th message
%tbody
- if @path.present?
%tr
%td
= link_to "..", tree_path(@platform, @repository, @project, @treeish, File.join([@path, ".."].compact))
- @tree.contents.each do |entry|
%tr
%td
- if entry.is_a?(Grit::Blob)
= link_to entry.name, blob_path(@platform, @repository, @project, @treeish, File.join([@path, entry.name].compact))
- else
= link_to "#{entry.name}/", tree_path(@platform, @repository, @project, @treeish, File.join([@path, entry.name].compact))
%td==  
%td==