Add: post seen option for users profiles

This commit is contained in:
Aroy-Art 2024-11-17 22:09:30 +01:00
parent 132d69b506
commit 79012429fb
Signed by: Aroy
GPG key ID: DB9689E9391DD156
2 changed files with 9 additions and 1 deletions

View file

@ -5,7 +5,7 @@ from .models import UserProfile
class UserProfileForm(forms.ModelForm):
class Meta:
model = UserProfile
fields = ['show_mature', "items_per_page"]
fields = ['show_mature', "items_per_page", "post_seen_delay"]
class UserForm(forms.ModelForm):
class Meta: