mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 14:14:18 +00:00
7a68a4abed
* Display date_added in bookmark list (#85) * Allow switching between different types of date formats * Improve date formatting * Use pluralize * Fix comment * Fix styles Co-authored-by: Sascha Ißbrücker <sissbruecker@lyska.io>
18 lines
504 B
Python
18 lines
504 B
Python
# Generated by Django 2.2.18 on 2021-03-30 10:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bookmarks', '0007_userprofile'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='userprofile',
|
|
name='bookmark_date_display',
|
|
field=models.CharField(choices=[('relative', 'Relative'), ('absolute', 'Absolute'), ('hidden', 'Hidden')], default='relative', max_length=10),
|
|
),
|
|
]
|