mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
* add external process spawner and update test cases * pass no_report to handlers * provide service api endpoints * do not spawn process for single architecture run * pass no report to handlers * make _call method of handlers public and also simplify process spawn * move update under add * implement actions from web page * clear logging & improve l&f
43 lines
1.3 KiB
Django/Jinja
43 lines
1.3 KiB
Django/Jinja
{#simplified version of full report#}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{ repository }}</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% include "utils/style.jinja2" %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<table id="packages" class="table table-striped">
|
|
<thead class="table-primary">
|
|
<tr>
|
|
<th>package</th>
|
|
<th>version</th>
|
|
<th>archive size</th>
|
|
<th>installed size</th>
|
|
<th>build date</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for package in packages %}
|
|
<tr>
|
|
<td><a href="{{ link_path }}/{{ package.filename }}" title="{{ package.name }}">{{ package.name }}</a></td>
|
|
<td>{{ package.version }}</td>
|
|
<td>{{ package.archive_size }}</td>
|
|
<td>{{ package.installed_size }}</td>
|
|
<td>{{ package.build_date }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|