aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/shared
diff options
context:
space:
mode:
authoranicet2015-06-16 14:20:38 +0200
committeranicet2015-06-16 14:20:38 +0200
commite443b48cda98a00f575804689bf30d539c662eae (patch)
treec08af052b8f2caf57d7608f7ec2d5ddebd9fccb2 /app/views/shared
parent879ee0b3f3dd2669dfb20b5ffc4fe296331c937d (diff)
downloadchouette-core-e443b48cda98a00f575804689bf30d539c662eae.tar.bz2
Ie Report : wording
Diffstat (limited to 'app/views/shared')
-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>