-
Notifications
You must be signed in to change notification settings - Fork 4
/
feedback.html
84 lines (74 loc) · 2.26 KB
/
feedback.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
title: Feedback
position: 7
layout: default
image: "/uploads/feedback-crushed.jpg"
icon: fa-message-exclamation
redirect_from: "/radars/"
---
{% include page-header.html %}
<!-- TODO: Move to SCSS component -->
<style>
.feedback {
display: flex;
flex-direction: column;
width: 100%;
}
.feedback thead,
.feedback tbody,
.feedback tr {
display: flex;
width: 100%;
}
.feedback th,
.feedback td {
flex: 1;
}
.feedback .nowrap {
white-space: nowrap;
flex: 1;
}
.feedback .wrap {
flex: 4;
/* ¼ of the table */
}
</style>
<p>This page collects the <s>radars</s> <a href="https://developer.apple.com/bug-reporting/">feedback</a> I’ve submitted to Apple over the years. While the Feedback system is <a href="https://fixradarorgtfo.com">far from perfect</a>, it’s still the best <small class="text-secondary">(and only)</small> way I have at affecting change in the products and platforms I use every day. 🫡</p>
<div class="feedback">
<table class="borderless">
<thead>
<tr>
<th class="wrap"><i class="fa-regular fa-satellite-dish fa-sm"></i> Open</th>
<th class="nowrap"><i class="fa-regular fa-calendar fa-sm"></i> Date</th>
</tr>
</thead>
<tbody>
{% for feedback in site.feedback %}
{% if feedback.resolution == "Open" %}
<tr>
<td class="wrap"><a class="accent-underlined" href="{{ feedback.url }}">{{ feedback.title }}</a></td>
<td class="nowrap"><time class="small text-secondary" datetime="{{ post.date | date_to_xmlschema }}">{{ feedback.date | date: "%Y · %m · %d" }}</time></td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<table class="borderless">
<thead>
<tr>
<th class="wrap"><i class="fa-regular fa-circle-check fa-sm"></i> Closed</th>
<th class="nowrap"><i class="fa-regular fa-calendar fa-sm"></i> Date</th>
</tr>
</thead>
<tbody>
{% for feedback in site.feedback %}
{% if feedback.resolution != "Open" %}
<tr>
<td class="wrap"><a class="accent-underlined" href="{{ feedback.url }}">{{ feedback.title }}</a></td>
<td class="nowrap"><time class="small text-secondary" datetime="{{ post.date | date_to_xmlschema }}">{{ feedback.date | date: "%Y · %m · %d" }}</time></td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
</div>