documentation, admin section, plus fix of a typo on models (#293)

* documentation, admin section, plus fix of a typo on models
This commit is contained in:
Markos Gogoulos
2021-09-27 15:07:17 +03:00
committed by GitHub
parent 32e07035f3
commit 4480fa7de1
4 changed files with 65 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.1.12 on 2021-09-27 11:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('files', '0002_auto_20201201_0712'),
]
operations = [
migrations.AlterField(
model_name='media',
name='reported_times',
field=models.IntegerField(default=0, help_text='how many time a media is reported'),
),
]

View File

@@ -209,7 +209,7 @@ class Media(models.Model):
help_text="Rating category, if media Rating is allowed",
)
reported_times = models.IntegerField(default=0, help_text="how many time a Medis is reported")
reported_times = models.IntegerField(default=0, help_text="how many time a media is reported")
search = SearchVectorField(
null=True,