Use updated instead of published date
This commit is contained in:
parent
11d4ee4659
commit
779747b1bc
|
@ -98,7 +98,7 @@ def fetch_feeds(feeds):
|
|||
"title": post.title,
|
||||
"original_image": image,
|
||||
"description": post.description,
|
||||
"date": post.published_parsed,
|
||||
"date": post.updated_parsed,
|
||||
"image": image,
|
||||
}
|
||||
)
|
||||
|
|
|
@ -88,7 +88,9 @@ class Membership(models.Model):
|
|||
payment = models.DecimalField(max_digits=6, decimal_places=2, default=0.0)
|
||||
payment_date = models.DateTimeField(default=None)
|
||||
join_date = models.DateTimeField(default=timezone.now)
|
||||
|
||||
has_fob = models.BooleanField(
|
||||
default=False, help_text="Member has fob access"
|
||||
)
|
||||
|
||||
# date not specific enough
|
||||
date = models.DateTimeField()
|
||||
|
|
Loading…
Reference in New Issue