Commit ec2b148d1982007294eb8b58d1469f20d67a1e9a

Authored by Nathan Broadbent
1 parent 1bdc92f9
Exists in master and in 1 other branch production

Added 'environment' column to 'Latest Deploys' table on apps/show

Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
app/views/apps/show.html.haml
@@ -63,6 +63,7 @@ @@ -63,6 +63,7 @@
63 %thead 63 %thead
64 %tr 64 %tr
65 %th When 65 %th When
  66 + %th Environment
66 %th Who 67 %th Who
67 %th Message 68 %th Message
68 %th Repository 69 %th Repository
@@ -72,6 +73,7 @@ @@ -72,6 +73,7 @@
72 - @deploys.each do |deploy| 73 - @deploys.each do |deploy|
73 %tr 74 %tr
74 %td.when #{deploy.created_at.to_s(:micro)} 75 %td.when #{deploy.created_at.to_s(:micro)}
  76 + %td.environment #{deploy.environment}
75 %td.who #{deploy.username} 77 %td.who #{deploy.username}
76 %td.message #{deploy.message} 78 %td.message #{deploy.message}
77 %td.repository #{deploy.repository} 79 %td.repository #{deploy.repository}