Skip to content

Commit

Permalink
Change timezone.now to timezone.localtime (#159)
Browse files Browse the repository at this point in the history
* Change timezone.now to timezone.localtime

* Create new migrations to make change
  • Loading branch information
yukitya-1811 authored Jun 29, 2024
1 parent 48d0866 commit fb1da4c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.7 on 2024-06-29 07:27

import datetime
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('accounts', '0005_alter_executivemember_date_joined_and_more'),
]

operations = [
migrations.AlterField(
model_name='executivemember',
name='date_joined',
field=models.DateTimeField(default=datetime.datetime(2024, 6, 29, 7, 27, 12, 372509, tzinfo=datetime.timezone.utc), verbose_name='Date Joined'),
),
]
2 changes: 1 addition & 1 deletion corpus/accounts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class ExecutiveMember(models.Model):
)
is_nep = models.BooleanField(default=False, verbose_name="Is NEP Member?")
date_joined = models.DateTimeField(
default=timezone.now(), verbose_name="Date Joined"
default=timezone.localtime(), verbose_name="Date Joined"
)

def save(self, *args, **kwargs):
Expand Down
4 changes: 2 additions & 2 deletions corpus/virtual_expo/member_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def new_report(request):
form = ReportForm(request.POST, request.FILES)
if form.is_valid():
report = form.save(commit=False)
report.created_at = timezone.now()
report.created_at = timezone.localtime()
report.save()

ReportMember.objects.create(report=report, member=request.exec_member)
Expand Down Expand Up @@ -148,7 +148,7 @@ def approver_dashboard(request):
report = Report.objects.get(pk=report_id)
if report.approver == request.exec_member:
report.approved = True
report.approved_at = timezone.now()
report.approved_at = timezone.localtime()
report.save()
messages.success(request, "Report marked as approved!")
return redirect("virtual_expo_members_approver_dashboard")
Expand Down

0 comments on commit fb1da4c

Please sign in to comment.