Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/django_project/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@
CELERY_BROKER_CONNECTION_RETRY_ON_STARTUP = env.bool(
"CELERY_BROKER_CONNECTION_RETRY_ON_STARTUP", True
) # Retry connection if Redis is down

CELERY_TIMEZONE = "America/Los_Angeles"
CELERY_ENABLE_UTC = True

SALT_KEY: str = env.str("SALT_KEY", "this_should_be_changed")

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="row justify-content-center">
<ul class="list-group p-2 mx-auto"
style="max-height: 350px; overflow-y:auto; padding:1rem; border-radius:6px; box-sizing:border-box; scrollbar-width:thin; scrollbar-color:rgba(var(--bs-primary-rgb), 0.25) transparent;">
style="width:95%; max-height:350px; overflow-x:hidden; overflow-y:auto; padding:1rem; border-radius:6px; box-sizing:border-box; scrollbar-width:thin; scrollbar-color:rgba(var(--bs-primary-rgb), 0.25) transparent;">
{% for row in queryset %}
<a href="{{ row.url }}" target="_blank" class="text-decoration-none text-dark my-2">
<li class="mx-2 list-group-item shadow-sm hover-grow hover-bg-light">
Expand Down
Loading