2011-04-04 17:00:24 +01:00
|
|
|
.content
|
|
|
|
.inner
|
|
|
|
%p
|
|
|
|
%b
|
|
|
|
= t("activerecord.models.project")
|
|
|
|
\:
|
|
|
|
= @project.name
|
|
|
|
|
2011-10-31 17:06:39 +00:00
|
|
|
%p
|
|
|
|
%b
|
|
|
|
= t("activerecord.attributes.project.repository")
|
|
|
|
\:
|
|
|
|
= git_repo_url @project.git_repo_name
|
|
|
|
|
2011-04-04 17:00:24 +01:00
|
|
|
- if @current_tag.present?
|
|
|
|
%p
|
|
|
|
%b Tag:
|
2011-10-24 11:19:04 +01:00
|
|
|
= link_to @current_tag.name, tree_path(@project, :treeish => @current_tag.name)
|
2011-04-04 17:00:24 +01:00
|
|
|
|
|
|
|
- if @current_branch.present?
|
|
|
|
%p
|
|
|
|
%b Branch:
|
2011-10-31 17:06:39 +00:00
|
|
|
= link_to @current_branch.name, tree_path(@project, :treeish => @current_branch.name)
|