We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8808acf commit 18898bcCopy full SHA for 18898bc
aggregator/migrations/0006_localdjangocommunity_plural.py
@@ -0,0 +1,17 @@
1
+# Generated by Django 5.0.9 on 2024-11-21 06:52
2
+
3
+from django.db import migrations
4
5
6
+class Migration(migrations.Migration):
7
8
+ dependencies = [
9
+ ('aggregator', '0005_feeditem_add_index_date_modified'),
10
+ ]
11
12
+ operations = [
13
+ migrations.AlterModelOptions(
14
+ name='localdjangocommunity',
15
+ options={'verbose_name_plural': 'Local Django Communities'},
16
+ ),
17
aggregator/models.py
@@ -226,6 +226,7 @@ class LocalDjangoCommunity(models.Model):
226
created_at = models.DateTimeField(auto_now_add=True)
227
228
class Meta:
229
+ verbose_name_plural = _("Local Django Communities")
230
constraints = [
231
models.CheckConstraint(
232
check=(
0 commit comments