mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
10 lines
186 B
Python
10 lines
186 B
Python
![]() |
from django.db import models
|
||
|
|
||
|
from utils.timezones.fields import TimeZoneField
|
||
|
|
||
|
|
||
|
|
||
|
class Profile(models.Model):
|
||
|
name = models.CharField(max_length=100)
|
||
|
timezone = TimeZoneField()
|