mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<h3 class="text-center font-weight-bold my-5">Unlisted apps</h3>
|
|
<div class="row">
|
|
<div class="mx-auto">
|
|
<table id="pullrequests" class="table table-responsive table-sm table-pullrequests">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>Description</th>
|
|
<th>Updated</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for app in apps %}
|
|
<tr>
|
|
<td class="col-md-2 text-center">
|
|
<a class="btn btn-sm mx-4 py-2 px-3 btn-light text-uppercase
|
|
font-weight-bold"
|
|
href="{{ app.url }}">{{ app.owner}}/{{ app.name }}</a>
|
|
</td>
|
|
<td class="column-pr-title font-weight-bold">{{ app.description
|
|
or "" }}</td>
|
|
<td class="col-md-1 daysAgo" style="font-size: 12px;"
|
|
>{{app.updated_days_ago}} days ago</td>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|