We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a1295a commit 9911a28Copy full SHA for 9911a28
2 files changed
assets/css/tap.scss
@@ -316,7 +316,7 @@ body {
316
}
317
318
&-info {
319
- width: 50%;
+ width: 30%;
320
321
&-date {
322
color: bulma.$grey;
lib/zout_web/templates/project/_table.html.eex
@@ -2,6 +2,7 @@
2
<thead>
3
<tr>
4
<th>Project</th>
5
+ <th>Omvang</th>
6
<th>Status</th>
7
<th>Acties</th>
8
</tr>
@@ -10,6 +11,7 @@
10
11
<%= for %{ project: project, ping: ping } <- @projects_and_pings do %>
12
13
<td class="order-item-info"><%= link project.name, to: ~p"/projects/#{project}" %></td>
14
+ <td><%= project.scope |> Atom.to_string() |> String.capitalize(:default) %></td>
15
<td>
16
<%= if is_nil(ping) do %>
17
<%= render_status(ping) %>
0 commit comments