diff --git a/planner/links/forms.py b/planner/links/forms.py index c5020b3..84afbec 100644 --- a/planner/links/forms.py +++ b/planner/links/forms.py @@ -8,13 +8,16 @@ from .models import Link class LinkForm(forms.ModelForm): class Meta: model = Link - fields = ['url', 'sets'] + fields = ['url', 'label', 'sets'] + label = forms.CharField(widget=forms.HiddenInput, required=False) url = forms.CharField(label='', widget=forms.TextInput(attrs={'autofocus': True})) sets = forms.CharField(widget=forms.HiddenInput, required=False) class LinkEditForm(LinkForm): + label = forms.CharField(label='label') + sets = forms.ModelMultipleChoiceField( label='sets', queryset=Set.objects.filter(done=False).order_by('-updated_at'), diff --git a/planner/links/migrations/0003_link_label.py b/planner/links/migrations/0003_link_label.py new file mode 100644 index 0000000..adfdb6e --- /dev/null +++ b/planner/links/migrations/0003_link_label.py @@ -0,0 +1,18 @@ +# Generated by Django 4.0 on 2022-01-10 22:58 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('links', '0002_initial'), + ] + + operations = [ + migrations.AddField( + model_name='link', + name='label', + field=models.CharField(blank=True, max_length=500, verbose_name='Label'), + ), + ] diff --git a/planner/links/models.py b/planner/links/models.py index a52e189..cfa2fc9 100644 --- a/planner/links/models.py +++ b/planner/links/models.py @@ -9,6 +9,7 @@ _salts = settings.DJANGO_HASHID_SALTS class Link(models.Model): slug = HashidsField(real_field_name='id', salt=_salts['link']) url = models.URLField(verbose_name='URL') + label = models.CharField(max_length=500, blank=True, verbose_name='Label') sets = models.ManyToManyField('sets.Set', through='sets.SetLink', related_name='sets') done = models.BooleanField(default=False, verbose_name='Done?') created_at = models.DateTimeField(auto_now_add=True, verbose_name='Created At') diff --git a/planner/templates/links/index.html b/planner/templates/links/index.html index 309448d..069e1e5 100644 --- a/planner/templates/links/index.html +++ b/planner/templates/links/index.html @@ -17,7 +17,13 @@ {% for link in links %} - {{ link.url }} + + {% if link.label %} + {{ link.label }} + {% else %} + {{ link.url }} + {% endif %} + {{ link.slug }} diff --git a/planner/templates/sets/detail.html b/planner/templates/sets/detail.html index da6e58e..2d39a75 100644 --- a/planner/templates/sets/detail.html +++ b/planner/templates/sets/detail.html @@ -18,7 +18,13 @@ {% for link in links %} - {{ link.url }} + + {% if link.label %} + {{ link.label }} + {% else %} + {{ link.url }} + {% endif %} + {{ link.slug }} diff --git a/planner/templates/sets/search.html b/planner/templates/sets/search.html index f0418b4..2715368 100644 --- a/planner/templates/sets/search.html +++ b/planner/templates/sets/search.html @@ -5,7 +5,13 @@ {% for link in links %} - {{ link.url }} + + {% if link.label %} + {{ link.label }} + {% else %} + {{ link.url }} + {% endif %} + {{ link.slug }} {% empty %}