aboutsummaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
Diffstat (limited to 'app/views')
-rw-r--r--app/views/shared/_ie_report_file.html.erb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/shared/_ie_report_file.html.erb b/app/views/shared/_ie_report_file.html.erb
index efb4b314f..6f7395532 100644
--- a/app/views/shared/_ie_report_file.html.erb
+++ b/app/views/shared/_ie_report_file.html.erb
@@ -1,19 +1,19 @@
<p class="lead">
-<p class="caption"><%= t(".graph.files.title_default", {:job => job.class.model_name.human, :extension => job.filename_extension} ) %></p>
+<p class="caption"><%= t(".title_default", {:job => job.class.model_name.human, :extension => job.filename_extension} ) %></p>
</p>
<div class="report results" data-refresh-interval="<%= job_refresh_interval(job) %>">
<table class="table table-hover table-striped data-table">
<thead>
<tr>
- <th class="state"><%= t(".table.line.state") %></th>
- <th class="name"><%= t(".table.line.name") %></th>
- <th class="error"><%= t(".table.line.error") %></th>
+ <th class="state"><%= t(".table.state") %></th>
+ <th class="name"><%= t(".table.name") %></th>
+ <th class="error"><%= t(".table.error") %></th>
</tr>
</thead>
<tbody>
<% job.report.files.each do |file| %>
<tr class="<%= file.status == 'ERROR' ? 'danger' : nil %>">
- <td><%= t(".graph.files.#{file.status.downcase}") %></td>
+ <td><%= t(".table.#{file.status.downcase}") %></td>
<td><%= file.name %></td>
<td><%= file.errors.map{|e| "#{e.code} : #{e.description}"}.join(' | ') if file.errors.present? %></td>
</tr>