-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.html.erb
More file actions
33 lines (33 loc) · 1.15 KB
/
Copy pathreport.html.erb
File metadata and controls
33 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<%= form_tag(report_period_path, method: :get) do %>
<%= date_field_tag :date_min %>
<%= date_field_tag :date_max %>
<%= submit_tag "期間指定", class: "btn btn-primary" %>
<% end %>
<div class="ads">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col" class="h2">広告ID</th>
<th scope="col" class="h2">Impression数</th>
<th scope="col" class="h2">Click数</th>
<th scope="col" class="h2">総費用(円)</th>
<th scope="col" class="h2">CTR</th>
<th scope="col" class="h2">CPM</th>
</tr>
</thead>
<tbody>
<tr>
<% @reports.each do |report| %>
<td class="h3 align-middle"><%= report.ad_id %></td>
<td class="h3 align-middle"><%= report.imp %></td>
<td class="h3 align-middle"><%= report.click %></td>
<td class="h3 align-middle"><%= report.price %></td>
<td class="h3 align-middle">
<%= (report.click.to_f / report.imp.to_f).round(3) %></td>
<td class="h3 align-middle">
<%= (report.price / (1000 / report.imp)) %></td>
</tr>
<% end %>
</tbody>
</table>
</div>