|
1 | 1 | <div class="point-holder">
|
2 | 2 |
|
| 3 | + <div class="article-holder"> |
| 4 | + <div class="article-point-header"> |
| 5 | + <ul class="point-info"> |
| 6 | + <li class="point-items"> |
| 7 | + <div class="point-service"> |
| 8 | + <span class="bolder">Service:</span> <%= @point.service.name %> |
| 9 | + </div> |
| 10 | + <div class="point-status"> |
| 11 | + <span class="bolder">Status:</span> <%= @point.status %> |
| 12 | + </div> |
| 13 | + <div class="point-rating"> |
| 14 | + <span class="bolder">Rating:</span> <%= @point.rating %> |
| 15 | + </div> |
| 16 | + </li> |
| 17 | + </ul> |
| 18 | + </div> |
| 19 | + </div> |
| 20 | + |
| 21 | + <div class="article-holder"> |
| 22 | + |
| 23 | + <div class="article-point-header"> |
| 24 | + <h3 class="lighter"><%= @point.title %></h3> |
| 25 | + </div> |
| 26 | + |
| 27 | + <div class="article-point-text-holder p15"> |
| 28 | + <div class="article-point-text pad-left pad-right"> |
| 29 | + <span class="bolder">Analysis:</span> <%= @point.analysis %> |
| 30 | + </div> |
| 31 | + </div> |
| 32 | + |
| 33 | + </div> |
| 34 | + |
| 35 | + |
| 36 | + <% if @point.reasons.any? %> |
| 37 | + |
| 38 | + <div class="status-changes article-holder border mw6 p15"> |
| 39 | + |
| 40 | + <table class="table table-striped"> |
| 41 | + <thead class="thead thead-dark"> |
| 42 | + <th scope="col">STATUS UPDATES</th> |
| 43 | + <th scope="col">REASON</th> |
| 44 | + <th scope="col">WHEN</th> |
| 45 | + </thead> |
| 46 | + <% @point.reasons.each do |reason| %> |
| 47 | + <tbody> |
| 48 | + <tr> |
| 49 | + <th scope="row"><%= reason.status %></th> |
| 50 | + <td><%= reason.content %></td> |
| 51 | + <td><%= time_ago_in_words reason.created_at %> ago</td> |
| 52 | + </tr> |
| 53 | + </tbody> |
| 54 | + <% end %> |
| 55 | + </table> |
| 56 | + |
| 57 | + </div> |
| 58 | + |
| 59 | + |
| 60 | + <% end %> |
3 | 61 | <div class="m15 mw6">
|
4 | 62 | <ul class="point-info">
|
5 | 63 | <li class="point-items">
|
|
18 | 76 | </div>
|
19 | 77 | <div class="pl15">
|
20 | 78 | <% if @point.status == "approved" %>
|
21 |
| - <% if !@point.is_featured? %> |
22 |
| - <%= link_to 'Feature', featured_point_path(@point), method: :put, class: 'btn btn-primary' %> |
23 |
| - <% else %> |
24 |
| - <%= link_to 'Un-Feature', featured_point_path(@point), method: :put, class: 'btn btn-warning' %> |
25 |
| - <% end %> |
| 79 | + <% if !@point.is_featured? %> |
| 80 | + <%= link_to 'Feature', featured_point_path(@point), method: :put, class: 'btn btn-primary' %> |
| 81 | + <% else %> |
| 82 | + <%= link_to 'Un-Feature', featured_point_path(@point), method: :put, class: 'btn btn-warning' %> |
| 83 | + <% end %> |
26 | 84 | <% end %>
|
27 | 85 | </div>
|
28 | 86 | <div class="pl15">
|
|
31 | 89 | <% end %>
|
32 | 90 | </li>
|
33 | 91 | </ul>
|
34 |
| -</div> |
35 |
| - |
36 |
| -<div class="article-holder border mw6"> |
37 |
| - <div class="article-header"> |
38 |
| - <ul class="point-info"> |
39 |
| - <li class="point-items"> |
40 |
| - <div class="point-service"> |
41 |
| - <span class="bolder">Service:</span> <%= @point.service.name %> |
42 |
| - </div> |
43 |
| - <div class="point-status"> |
44 |
| - <span class="bolder">Status:</span> <%= @point.status %> |
45 |
| - </div> |
46 |
| - <div class="point-rating"> |
47 |
| - <span class="bolder">Rating:</span> <%= @point.rating %> |
48 |
| - </div> |
49 |
| - </li> |
50 |
| - </ul> |
51 |
| - </div> |
52 |
| -</div> |
53 |
| - |
54 |
| -<div class="article-holder border mw6"> |
55 |
| - |
56 |
| - <div class="article-header"> |
57 |
| - <h3 class="lighter smaller-title"><%= @point.title %></h3> |
58 |
| - </div> |
59 |
| - |
60 |
| - <div class="article-text-holder bgw p15"> |
61 |
| - <div class="article-text pad-left pad-right"> |
62 |
| - <span class="bolder">Analysis:</span> <%= @point.analysis %> |
63 |
| - </div> |
64 | 92 | </div>
|
65 | 93 |
|
66 | 94 | </div>
|
67 | 95 |
|
68 |
| - |
69 |
| -<% if @point.reasons.any? %> |
70 |
| - |
71 |
| -<div class="status-changes article-holder border mw6 p15"> |
72 |
| - |
73 |
| - <table class="table table-striped"> |
74 |
| - <thead class="thead thead-dark"> |
75 |
| - <th scope="col">STATUS UPDATES</th> |
76 |
| - <th scope="col">REASON</th> |
77 |
| - <th scope="col">WHEN</th> |
78 |
| - </thead> |
79 |
| - <% @point.reasons.each do |reason| %> |
80 |
| - <tbody> |
81 |
| - <tr> |
82 |
| - <th scope="row"><%= reason.status %></th> |
83 |
| - <td><%= reason.content %></td> |
84 |
| - <td><%= time_ago_in_words reason.created_at %> ago</td> |
85 |
| - </tr> |
86 |
| - </tbody> |
87 |
| - <% end %> |
88 |
| -</table> |
89 |
| - |
90 |
| -</div> |
91 |
| - |
92 |
| -<% end %> |
93 |
| - |
94 |
| -</div> |
95 |
| - |
0 commit comments