blob: dfa0b1980149df0239b0f1df38191b38c7434554 (
plain)
1
2
3
4
5
6
7
8
9
|
[% if entries %]
The following releases of this platform are supported:
| Version | Support Tier | Native Package Architectures | Notes |
|:-------:|:------------:|:----------------------------:|:----- |
[% for e in entries %]
| [[ e.version ]] | [[ e.support ]] | [[ ', '.join(e.arches) ]] | [[ e.notes ]] |
[% endfor %]
[% endif %]
|