Compare commits

...

3 Commits

Author SHA1 Message Date
Lukáš Kucharczyk 6102459637 Set VERSION_NUMBER in Dockerfile
continuous-integration/drone/push Build is failing Details
2023-01-03 22:04:46 +01:00
Lukáš Kucharczyk e4cd75d51f Use add.html for add_purchase 2023-01-03 22:04:36 +01:00
Lukáš Kucharczyk b1c8f58855 Add make shell 2023-01-03 22:04:22 +01:00
3 changed files with 8 additions and 3 deletions

View File

@ -12,4 +12,5 @@ COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
USER timetracker
EXPOSE 8000
ENV VERSION_NUMBER $(git describe --tags --abbrev=0)
ENTRYPOINT [ "/entrypoint.sh" ]

View File

@ -1,4 +1,4 @@
.PHONY: createsuperuser
.PHONY: createsuperuser shell
all: css migrate
@ -34,4 +34,7 @@ loadsample:
python src/web/manage.py loaddata sample.yaml
createsuperuser:
python src/web/manage.py createsuperuser
python src/web/manage.py createsuperuser
shell:
python src/web/manage.py shell

View File

@ -47,7 +47,8 @@ def add_purchase(request):
form.save()
context["form"] = form
return render(request, "add_purchase.html", context)
context["title"] = "Add New Purchase"
return render(request, "add.html", context)
def add_game(request):