WIP.
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Víðir Valberg Guðmundsson 2023-10-20 23:10:53 +02:00
parent 74013131b4
commit c0ca622b6b
4 changed files with 44 additions and 11 deletions

View File

@ -55,12 +55,12 @@ html, body {
}
h1, h2, h3, h4, h5, h6 {
font-weight : 600;
font-weight : 600;
color : var(--twilight);
}
a {
font-weight : 500;
font-weight : 500;
}
body {
@ -246,14 +246,14 @@ button {
text-decoration : none;
}
div.services > div > a:hover,
div.services > div > a:hover,
a.button:hover,
button:hover {
opacity : 1.0;
}
form > div {
margin : 0 0 var(--double-space);
margin : 0 0 var(--double-space);
}
form > div >label {
@ -274,7 +274,7 @@ form > div > input[type="password"] {
height : 100%;
display : flex;
align-items : center;
justify-content : center;
justify-content : center;
}
#loginbox {
@ -347,3 +347,15 @@ footer {
span.time_remaining {
color : var(--fade);
}
.pagination {
display : flex;
justify-content : center;
list-style : none;
padding : 0;
margin : 0;
}
.pagination > li {
margin : 0 6px;
}

View File

@ -35,10 +35,31 @@
</aside>
<nav>
<ol>
<li><a href="/">Dashboard</a></li>
<li><a href="/services" class="current">Services</a></li>
<li><a href="#">Payment</a></li>
<li><a href="/membership">Settings</a></li>
<li>
<a href="/" class="{% active_path "index" "current" %}">
Dashboard
</a>
</li>
<li>
<a href="/services" class="{% active_path "services" "current" %}">
Services
</a>
</li>
<li>
<a href="{% url "account_email" %}" class="{% active_path "account_email" "current" %}">
Email
</a>
</li>
{% if perms.membership.administrate_memberships %}
<li>
<a href="{% url "admin-members" %}" class="{% active_path "admin-members" "current" %}">
Admin
</a>
</li>
{% endif %}
</ol>
</nav>
<article>

View File

@ -13,7 +13,7 @@ from membership.views import membership_overview
urlpatterns = [
path("", login_required(index), name="index"),
path("services/", login_required(services_overview), name="services-overview"),
path("services/", login_required(services_overview), name="services"),
path("membership/", membership_overview, name="membership-overview"),
path("admin/members/", members_admin, name="admin-members"),
path(

View File

@ -48,7 +48,7 @@
</table>
{% if is_paginated %}
<nav aria-label="Page navigation example">
<nav>
<ul class="pagination justify-content-center">
{% if not page.has_previous %}