9 changed files with 202 additions and 2 deletions
-
65apps/hadis/docs.py
-
12apps/hadis/migrations/0071_merge_20251223_1055.py
-
19apps/hadis/migrations/0072_transmitterreliability_slug.py
-
7apps/hadis/models/transmitter.py
-
2apps/hadis/serializers/hadis.py
-
3apps/hadis/urls.py
-
52apps/hadis/views/transmitter.py
-
22locale/fa/LC_MESSAGES/django.po
-
22locale/ru/LC_MESSAGES/django.po
@ -0,0 +1,12 @@ |
|||
# Generated by Django 4.2.27 on 2025-12-23 10:55 |
|||
|
|||
from django.db import migrations |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
dependencies = [ |
|||
("hadis", "0070_alter_transmitters_reliability"), |
|||
("hadis", "0070_migrate_transmitter_reliability_data"), |
|||
] |
|||
|
|||
operations = [] |
|||
@ -0,0 +1,19 @@ |
|||
# Generated by Django 4.2.27 on 2025-12-23 10:55 |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
dependencies = [ |
|||
("hadis", "0071_merge_20251223_1055"), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name="transmitterreliability", |
|||
name="slug", |
|||
field=models.SlugField( |
|||
blank=True, max_length=255, null=True, verbose_name="slug" |
|||
), |
|||
), |
|||
] |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue