mirror of
https://github.com/slawkens/myaac.git
synced 2025-06-20 20:00:14 +02:00
19 lines
450 B
Twig
19 lines
450 B
Twig
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Plugin Name</th>
|
|
<th>Your Version</th>
|
|
<th>Latest Version</th>
|
|
<th>Download Link</th>
|
|
</tr>
|
|
</thead>
|
|
{% for plugin in plugins %}
|
|
<tr>
|
|
<td>{{ plugin.name }}</td>
|
|
<td>{{ plugin.yourVersion }}</td>
|
|
<td>{{ plugin.latestVersion }}</td>
|
|
<td><a href="{{ plugin.download_link }}" target="_blank">{{ plugin.download_link }}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|