43 lines
656 B
Plaintext
43 lines
656 B
Plaintext
<% if notice %>
|
|
<div class="row">
|
|
|
|
<p id="notice"><%= notice %></p>
|
|
</div>
|
|
<% end %>
|
|
<div class="row">
|
|
|
|
<p>
|
|
<strong>Title:</strong>
|
|
<%= @project.title %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Status:</strong>
|
|
<%= @project.status %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Requirements:</strong>
|
|
<%= @project.requirements %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Design:</strong>
|
|
<%= @project.design %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Dev & Ops:</strong>
|
|
<%= @project.devops %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>QA & Launch:</strong>
|
|
<%= @project.qalaunch %>
|
|
</p>
|
|
|
|
|
|
|
|
<%= link_to 'Edit', edit_project_path(@project) %> |
|
|
<%= link_to 'Back', root_path %>
|
|
</div> |