Commit ec2b148d1982007294eb8b58d1469f20d67a1e9a
1 parent
1bdc92f9
Exists in
master
and in
1 other branch
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 | 63 | %thead |
64 | 64 | %tr |
65 | 65 | %th When |
66 | + %th Environment | |
66 | 67 | %th Who |
67 | 68 | %th Message |
68 | 69 | %th Repository |
... | ... | @@ -72,6 +73,7 @@ |
72 | 73 | - @deploys.each do |deploy| |
73 | 74 | %tr |
74 | 75 | %td.when #{deploy.created_at.to_s(:micro)} |
76 | + %td.environment #{deploy.environment} | |
75 | 77 | %td.who #{deploy.username} |
76 | 78 | %td.message #{deploy.message} |
77 | 79 | %td.repository #{deploy.repository} | ... | ... |