mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2024-12-26 05:42:23 +00:00
Use _meta field instead of class
This commit is contained in:
parent
997c2eac50
commit
9afb750be6
@ -19,7 +19,7 @@ class Command(BaseCommand):
|
|||||||
for model_class, file_name in [(BD, "bd.md"), (Manga, "mangas.md"), (Roman, "romans.md"),
|
for model_class, file_name in [(BD, "bd.md"), (Manga, "mangas.md"), (Roman, "romans.md"),
|
||||||
(CD, "cd.md"), (Vinyle, "vinyle.md")]:
|
(CD, "cd.md"), (Vinyle, "vinyle.md")]:
|
||||||
with open(directory + "/docs/" + file_name, "w") as f:
|
with open(directory + "/docs/" + file_name, "w") as f:
|
||||||
f.write("# " + model_class._meta.verbose_name)
|
f.write("# " + str(model_class._meta.verbose_name))
|
||||||
|
|
||||||
titles = list(set(obj["title"] for obj in model_class.objects.values("title").distinct().all()))
|
titles = list(set(obj["title"] for obj in model_class.objects.values("title").distinct().all()))
|
||||||
titles.sort()
|
titles.sort()
|
||||||
|
Loading…
Reference in New Issue
Block a user