Skip to content

Commit

Permalink
feat: added a few changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tapczanek1321 committed Mar 25, 2024
1 parent c300bed commit 058022f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions core/admin.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Register your models here.
from django.contrib import admin

from .models import NextMeeting

admin.site.register(NextMeeting)
2 changes: 1 addition & 1 deletion core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


class NextMeeting(models.Model):
title = models.CharField(max_length=50)
title = models.CharField(max_length=150)
description = models.TextField()
date_of_meeting = models.DateTimeField("Data spotkania")

Expand Down
2 changes: 1 addition & 1 deletion gwardia_hub/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@

LANGUAGE_CODE = "en-us"

TIME_ZONE = "UTC"
TIME_ZONE = "Europe/Warsaw"

USE_I18N = True

Expand Down

0 comments on commit 058022f

Please sign in to comment.