Compare commits

..

No commits in common. "7e3f33a824f4a1451e312368d447b9925ac3f940" and "d287b3291d9999f0c2174f671aba288c3865d3e8" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ services:
&& sleep 3
&& python manage.py migrate
&& DJANGO_SUPERUSER_PASSWORD='root' python manage.py createsuperuser\
--username root --noinput --email software@cscherr.de || true
--username root --noinput --email software@cscherr.de
&& python manage.py runserver 0.0.0.0:80
"
volumes:

View file

@ -1,5 +1,5 @@
date = "2023-10-02 09:59:00.127936"
update = "2023-10-02 10:59:00.127936"
update = "2023-10-02 09:59:00.127936"
keywords = ["bash"]
category = "Guide"
featured = true

View file

@ -11,7 +11,7 @@ logger = logging.getLogger(__name__)
register = Library()
@register.simple_tag
def format_time(timestamp: datetime, format: str = "%F %H:%M:%S %Z") -> str:
def format_time(timestamp: datetime, format: str = "%F %H:%M:%S") -> str:
return timestamp.strftime(format)
@register.simple_tag(takes_context=True)