- Show timezone next to post datetimes
- Take read status in consideration when sorting posts
This commit is contained in:
Sonny Bakker 2020-10-31 14:31:27 +01:00
parent ee9b36d8ae
commit 116b6d1308
19 changed files with 166 additions and 57 deletions

View file

@ -0,0 +1,20 @@
# Generated by Django 3.0.7 on 2020-10-27 21:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("accounts", "0012_remove_user_task")]
operations = [
migrations.AddField(
model_name="user",
name="auto_mark_read",
field=models.BooleanField(
default=True,
help_text="Wether posts should be marked as read after x amount of seconds of reading",
verbose_name="Auto read marking",
),
)
]