refactor base
continuous-integration/drone/push Build is failing Details

This commit is contained in:
cellarspoon 2022-01-13 09:25:39 +01:00
parent 953821b381
commit 5708f7e0d6
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410
3 changed files with 76 additions and 93 deletions

View File

@ -1,36 +1,18 @@
{% extends "base.html" %}
{% block content %}
<div class="container">
<nav class="navbar" role="navigation" aria-label="main navigation">
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbar">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<div class="logo">
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
</div>
{% set site_list = ("tv","social","cloud","pen", "books") %}
<div class="columns is-multiline is-gapless is-mobile">
{% for i in site_list %}
<div class="column site is-one-fifth-tablet is-one-third-mobile">
<a href="https://{{i}}.lumbung.space">
<img src="{{ url_for('static', path='svg/' ~ i ~'_lumbung.svg') }}" alt="lumbung.{{i}}">
<p>{{i}}.lumbung.space</p>
</a>
<div id="navbar" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item">
<a href="/"><strong>services</strong></a>
</div>
<div class="navbar-item">
<a href="/invites"><strong>invites</strong></a>
</div>
</div>
</div>
</nav>
<div class="logo">
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
</div>
{% set site_list = ("tv","social","cloud","pen", "books") %}
<div class="columns is-multiline is-gapless is-mobile">
{% for i in site_list %}
<div class="column site is-one-fifth-tablet is-one-third-mobile">
<a href="https://{{i}}.lumbung.space">
<img src="{{ url_for('static', path='svg/' ~ i ~'_lumbung.svg') }}" alt="lumbung.{{i}}">
<p>{{i}}.lumbung.space</p>
</a>
</div>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</div>
{% endblock %}

View File

@ -15,22 +15,41 @@
{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<footer class="footer">
<div class="content footer-links">
<span>
<a href="https://panduan.lumbung.space/share/684ea8a2-bc47-4111-acf2-f88a200b640f">Imprint</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/8a742222-2561-4d67-a9f1-6c7c4fe8bead">Privacy Policy</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/272026ff-57fd-4894-8d68-58606c77044c">FAQ</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/ece8e392-7b21-4379-bd82-a11e06ebf1fb">Community Guidelines</a>
</span>
<div class="container">
<nav class="navbar" role="navigation" aria-label="main navigation">
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbar">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
<div id="navbar" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item">
<a href="/"><strong>services</strong></a>
</div>
<div class="navbar-item">
<a href="/invites"><strong>invites</strong></a>
</div>
</div>
</div>
</footer>
</nav>
<div id="content">{% block content %}{% endblock %}</div>
</div>
<footer class="footer">
<div class="content footer-links">
<span>
<a href="https://panduan.lumbung.space/share/684ea8a2-bc47-4111-acf2-f88a200b640f">Imprint</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/8a742222-2561-4d67-a9f1-6c7c4fe8bead">Privacy Policy</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/272026ff-57fd-4894-8d68-58606c77044c">FAQ</a>
</span>
<span>
<a href="https://panduan.lumbung.space/share/ece8e392-7b21-4379-bd82-a11e06ebf1fb">Community Guidelines</a>
</span>
</div>
</footer>
</body>
</html>

View File

@ -1,50 +1,32 @@
{% extends "base.html" %}
{% block content %}
<div class="container">
<nav class="navbar" role="navigation" aria-label="main navigation">
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbar">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
<div id="navbar" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item">
<a href="/"><strong>services</strong></a>
</div>
<div class="navbar-item">
<a href="/invites"><strong>invites</strong></a>
</div>
</div>
</div>
</nav>
<div class="logo">
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
</div>
<div>
{% if user.preferred_username in invites and invites[user.preferred_username]|length > 0 %}
<table>
<tr>
<th>Link</th>
<th>Validity</th>
<th>Actions</th>
</tr>
{% for invite in invites[user.preferred_username] %}
<tr>
<td>
<a class="invite" href="{{ url_for('register_invite', invite=invite.link) }}">
{{ url_for('register_invite', invite=invite.link) }}
</a>
</td>
<td> {{ invite.validity }} </td>
<td> <button class="button is-ghost"><a href="{{ url_for('invite_keycloak_delete') }}?invite={{ invite.link }}">delete</a></button></td>
</tr>
{% endfor %}
</table>
{% endif %}
<div class="logo">
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
</div>
<div>
{% if user.preferred_username in invites and invites[user.preferred_username]|length > 0 %}
<table>
<tr>
<th>Link</th>
<th>Validity</th>
<th>Actions</th>
</tr>
{% for invite in invites[user.preferred_username] %}
<tr>
<td>
<a class="invite" href="{{ url_for('register_invite', invite=invite.link) }}">
{{ url_for('register_invite', invite=invite.link) }}
</a>
</td>
<td> {{ invite.validity }} </td>
<td> <button class="button is-ghost"><a href="{{ url_for('invite_keycloak_delete') }}?invite={{ invite.link }}">delete</a></button></td>
</tr>
{% endfor %}
</table>
{% endif %}
<p>
<button class="button is-ghost"><a href="{{ url_for('invite_keycloak_create') }}">Generate</a></button>
</p>
</div>
<p>
<button class="button is-ghost"><a href="{{ url_for('invite_keycloak_create') }}">Generate</a></button>
</p>
</div>
{% endblock %}