Skip to content

Commit 9457827

Browse files
author
piks3l
authored
Merge pull request #179 from tosdr/styling-point-view-page
[enh] restyling the point view page
2 parents 19cabf4 + 411ccb9 commit 9457827

File tree

3 files changed

+73
-66
lines changed

3 files changed

+73
-66
lines changed

app/assets/stylesheets/pages/_point.scss

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
.point-holder {
2-
margin-right: auto;
3-
margin-left: auto;
4-
max-width: 60rem;
2+
padding-left: 20px;
3+
padding-right: 20px;
4+
}
5+
6+
.article-point-header {
7+
padding-top: 10px;
8+
font-weight: bolder;
9+
font-size: larger;
510
}
611

712
.border {

app/views/points/index.html.erb

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<h1 class="fw2 mv3">
33
All Contributions
44
</h1>
5+
<%= link_to 'Add A Point', new_point_path, class: 'btn btn-primary' %>
6+
57
</header>
68

79
<%= render "shared/search" %>

app/views/points/show.html.erb

+63-63
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,63 @@
11
<div class="point-holder">
22

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 %>
361
<div class="m15 mw6">
462
<ul class="point-info">
563
<li class="point-items">
@@ -18,11 +76,11 @@
1876
</div>
1977
<div class="pl15">
2078
<% 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 %>
2684
<% end %>
2785
</div>
2886
<div class="pl15">
@@ -31,65 +89,7 @@
3189
<% end %>
3290
</li>
3391
</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>
6492
</div>
6593

6694
</div>
6795

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

Comments
 (0)