akam_roadmap/app/views/projects/show.html.erb

43 lines
656 B
Plaintext
Raw Permalink Normal View History

2014-11-07 20:37:59 +00:00
<% if notice %>
<div class="row">
2014-11-06 21:50:01 +00:00
2014-11-07 20:37:59 +00:00
<p id="notice"><%= notice %></p>
</div>
<% end %>
<div class="row">
2014-11-06 21:50:01 +00:00
2014-11-07 20:37:59 +00:00
<p>
<strong>Title:</strong>
<%= @project.title %>
</p>
2014-11-06 21:50:01 +00:00
2014-11-07 20:37:59 +00:00
<p>
<strong>Status:</strong>
<%= @project.status %>
</p>
2014-11-06 21:50:01 +00:00
2014-11-07 20:37:59 +00:00
<p>
<strong>Requirements:</strong>
<%= @project.requirements %>
</p>
2014-11-06 21:50:01 +00:00
2014-11-07 20:37:59 +00:00
<p>
<strong>Design:</strong>
<%= @project.design %>
</p>
2014-11-06 21:50:01 +00:00
2014-11-07 20:37:59 +00:00
<p>
<strong>Dev & Ops:</strong>
<%= @project.devops %>
</p>
2014-11-06 21:50:01 +00:00
2014-11-07 20:37:59 +00:00
<p>
<strong>QA & Launch:</strong>
<%= @project.qalaunch %>
</p>
2014-11-06 21:50:01 +00:00
2014-11-07 20:37:59 +00:00
<%= link_to 'Edit', edit_project_path(@project) %> |
<%= link_to 'Back', root_path %>
</div>