parent
aaad289c52
commit
9c424d9bb6
|
@ -46,6 +46,7 @@ class Home(FormView):
|
||||||
context["events"], self.request.identity
|
context["events"], self.request.identity
|
||||||
)
|
)
|
||||||
context["current_page"] = "home"
|
context["current_page"] = "home"
|
||||||
|
context["allows_refresh"] = True
|
||||||
return context
|
return context
|
||||||
|
|
||||||
def form_valid(self, form):
|
def form_valid(self, form):
|
||||||
|
@ -60,7 +61,10 @@ class Home(FormView):
|
||||||
class Local(ListView):
|
class Local(ListView):
|
||||||
|
|
||||||
template_name = "activities/local.html"
|
template_name = "activities/local.html"
|
||||||
extra_context = {"current_page": "local"}
|
extra_context = {
|
||||||
|
"current_page": "local",
|
||||||
|
"allows_refresh": True,
|
||||||
|
}
|
||||||
paginate_by = 50
|
paginate_by = 50
|
||||||
|
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
|
@ -76,7 +80,10 @@ class Local(ListView):
|
||||||
class Federated(ListView):
|
class Federated(ListView):
|
||||||
|
|
||||||
template_name = "activities/federated.html"
|
template_name = "activities/federated.html"
|
||||||
extra_context = {"current_page": "federated"}
|
extra_context = {
|
||||||
|
"current_page": "federated",
|
||||||
|
"allows_refresh": True,
|
||||||
|
}
|
||||||
paginate_by = 50
|
paginate_by = 50
|
||||||
|
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
|
@ -92,7 +99,10 @@ class Federated(ListView):
|
||||||
class Notifications(ListView):
|
class Notifications(ListView):
|
||||||
|
|
||||||
template_name = "activities/notifications.html"
|
template_name = "activities/notifications.html"
|
||||||
extra_context = {"current_page": "notifications"}
|
extra_context = {
|
||||||
|
"current_page": "notifications",
|
||||||
|
"allows_refresh": True,
|
||||||
|
}
|
||||||
paginate_by = 50
|
paginate_by = 50
|
||||||
|
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
|
||||||
|
class HTMXMixin:
|
||||||
|
template_name_htmx: Optional[str] = None
|
||||||
|
|
||||||
|
def get_template_name(self):
|
||||||
|
if self.request.htmx and self.template_name_htmx:
|
||||||
|
return self.template_name_htmx
|
||||||
|
else:
|
||||||
|
return self.template_name
|
|
@ -187,6 +187,22 @@ header menu a i {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header menu a.htmx-request i {
|
||||||
|
-webkit-animation-delay: var(--fa-animation-delay, 0s);
|
||||||
|
animation-delay: var(--fa-animation-delay, 0s);
|
||||||
|
-webkit-animation-direction: var(--fa-animation-direction, normal);
|
||||||
|
animation-direction: var(--fa-animation-direction, normal);
|
||||||
|
-webkit-animation-name: fa-spin;
|
||||||
|
animation-name: fa-spin;
|
||||||
|
-webkit-animation-duration: var(--fa-animation-duration, 2s);
|
||||||
|
animation-duration: var(--fa-animation-duration, 2s);
|
||||||
|
-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
||||||
|
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
||||||
|
-webkit-animation-timing-function: var(--fa-animation-timing, linear);
|
||||||
|
animation-timing-function: var(--fa-animation-timing, linear);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
header menu .gap {
|
header menu .gap {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,9 +34,11 @@
|
||||||
<a href="{% url "search" %}" title="Search" {% if top_section == "search" %}class="selected"{% endif %}>
|
<a href="{% url "search" %}" title="Search" {% if top_section == "search" %}class="selected"{% endif %}>
|
||||||
<i class="fa-solid fa-search"></i>
|
<i class="fa-solid fa-search"></i>
|
||||||
</a>
|
</a>
|
||||||
<a href="{% url "settings" %}" title="Settings" {% if top_section == "settings" %}class="selected"{% endif %}>
|
{% if allows_refresh %}
|
||||||
<i class="fa-solid fa-gear"></i>
|
<a href="." title="Refresh" hx-get="." hx-select=".left-column" hx-target=".left-column" hx-swap="outerHTML">
|
||||||
</a>
|
<i class="fa-solid fa-rotate"></i>
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
<div class="gap"></div>
|
<div class="gap"></div>
|
||||||
<a href="/identity/select/" class="identity">
|
<a href="/identity/select/" class="identity">
|
||||||
{% if not request.identity %}
|
{% if not request.identity %}
|
||||||
|
|
Loading…
Reference in New Issue