blob: 6699216fe3eb8b539c29af68c73218168e40150e (
plain)
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
|
---
title: 'Unavailable Gentoo developers (devaway)'
navtitle: 'Unavailable developers'
nav1: inside-gentoo
nav2: developers
nav3: devaway
nav3-show: true
nav3-weight: 20
layout: page-nav3
---
<p>
<strong>The following developers are currently not available.</strong>
Data updated at {{ 'now' | date: "%c" }}.
</p>
<p>
Colors indicate how long since the developer's ~/.away file was set:
<span class="text-success">up to 14 days</span>;
<span class="text-info">up to 2 months</span>;
<span class="text-warning">up to 6 months</span>;
<span class="text-danger">more than 6 months</span>.
</p>
<table class="table">
<tr>
<th>Developer</th>
<th>Message and timestamp</th>
</tr>
{% for entry in site.data.devaway %}
<tr class="
{% if entry[1].away_days < 14 %}
bg-success
{% elsif entry[1].away_days < 60 %}
bg-info
{% elsif entry[1].away_days < 180 %}
bg-warning
{% else %}
bg-danger
{% endif %}">
<th id="{{ entry[0] | strip_html }}">{{ entry[0] | strip_html }}</th>
<td>{{ entry[1].reason | strip_html }}</td>
</tr>
{% endfor %}
</table>
|