You've already forked mainline-status
mirror of
https://github.com/linux-msm/mainline-status.git
synced 2026-02-25 13:12:54 -08:00
20 lines
495 B
Plaintext
20 lines
495 B
Plaintext
<td class="
|
|
{%- case include.status -%}
|
|
{%- when "N", "no", false -%}
|
|
status-N
|
|
{%- when "pending", "WIP", "wip" -%}
|
|
status-next
|
|
{%- when "N/A", "n/a" -%}
|
|
status-NA
|
|
{%- when nil -%}
|
|
status-unknown
|
|
{%- else -%}
|
|
{%- if include.status contains "next" or include.status contains "Next" -%}
|
|
status-next
|
|
{%- elsif include.status contains "no-dts" -%}
|
|
status-no-dts
|
|
{%- else -%}
|
|
status-Y
|
|
{%- endif -%}
|
|
{%- endcase -%}">{{include.status}}</td>
|