This repository was archived by the owner on Nov 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-21
lines changed Expand file tree Collapse file tree 1 file changed +3
-21
lines changed Original file line number Diff line number Diff line change 3
3
{% assign categories = include.data.categories | where: "name", include.categories %}
4
4
{% endif %} -->
5
5
6
- <!-- <table class="status-table">
7
- <tbody>
8
- <tr class="category-name">
9
- <th>In progress</th>
10
- <th>Planned</th>
11
- </tr>
12
- {% for categories in categories %}
13
- {% for categoryFeature in categories.features %}
14
- <tr class="category-feature">
15
- {% if categories.name == "In progress" %}
16
- <td>{{ categoryFeature.name }}</td>
17
- {% elsif categories.name == "Planned" %}
18
- <td>{{ categoryFeature.name }}</td>
19
- {% endif %}
20
- </tr>
21
- {% endfor %}
22
- {% endfor %}
23
- </tbody>
24
- </table> -->
25
-
26
6
<table class =" status-table " >
27
7
<tbody >
28
8
<tr class="category-name">
32
12
{% for categories in categories %}
33
13
{% for categoryFeature in categories.features %}
34
14
<tr class="category-feature">
35
- {% case categories.name == "In progress" %}
15
+ {% if categories.name == "In progress" %}
36
16
<td>{{ categoryFeature.name }}</td>
17
+ <td></td>
37
18
{% elsif categories.name == "Planned" %}
19
+ <td></td>
38
20
<td>{{ categoryFeature.name }}</td>
39
21
{% endif %}
40
22
</tr>
You can’t perform that action at this time.
0 commit comments