21 lines
825 B
Plaintext
21 lines
825 B
Plaintext
-set_meta_tags :title => [title_object(@project), shortest_hash_id(@commit.id), @commit.message]
|
|
= render :partial => 'projects/submenu'
|
|
|
|
.description
|
|
%h3= t("layout.projects.about_subheader")
|
|
%p
|
|
= @project.description
|
|
= link_to t('layout.read_more'), '#'
|
|
|
|
%h3= t("layout.projects.last_commit")
|
|
- GitPresenters::CommitAsMessagePresenter.present(@commit, :branch => @branch, :project => @project) do |presenter|
|
|
= render :partial => 'shared/feed_message', :locals => {:presenter => presenter, :item_no => 1}
|
|
|
|
.both
|
|
|
|
#repo-wrapper
|
|
= render :partial => 'show'
|
|
|
|
= render :partial => "comments/list", :locals => {:list => Comment.for_commit(@commit), :project => @project, :commentable => @commit}
|
|
= render :partial => "comments/add", :locals => {:project => @project, :commentable => @commit} if current_user
|