summaryrefslogtreecommitdiff
path: root/app/views/projects/_side_panel.html.haml
blob: 2f786b4d242f7c6e21865ffc002377b8170557c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%h3.notice{:style => "width:235px;"}
  = @project.name
%p
  %b Path:
  = @project.path
%p
  %b Description:
  = truncate @project.description
.left.append-bottom
  = link_to "Tree", tree_project_path(@project), :class => "button"
  = link_to "Commits", project_commits_path(@project), :class => "button"
  = link_to 'Team', team_project_path(@project), :class => "button"
  - if can? current_user, :admin_project, @project
    = link_to 'Edit', edit_project_path(@project), :class => "button positive"