Blob: index.html

Blob id: 042b7131188b4f57173f95542aa31d6a0f1960eb

Size: 1.3 KB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Lipasto</title>
</head>
<body>
    <h2>Repositories</h2>
    <table>
        <thead>
            <tr style="font-weight: bold;">
                <td>Repository</td>
                <td>Owner</td>
                <td>Description</td>
            </tr>
        </thead>
        <tbody>
            {% for repo in repos %}
            <tr>
                <td>
                    <a href="{{ url_for('repo_commits', repo_name=repo.name) }}">
                        {{ repo.name }}
                    </a>
                </td>
                <td>
                    {% if repo.owner %}
                    {{ repo.owner }}
                    {% else %}
                    -
                    {% endif %}
                </td>
                <td>
                    {% if repo.description %}
                    {{ repo.description }}
                    {% else %}
                    -
                    {% endif %}
                </td>
            </tr>
            {% endfor %}
        </tbody>
    </table>
    <small>
        libgit2 - {{ version }}. <a href="https://git.wisdurm.fi/lipasto">Lipasto</a>.
    </small>
</body>
</html>