Skip to content

Commit

Permalink
fixig cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiboutas committed Dec 29, 2023
1 parent 8e2dacd commit 272248b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/models/cvs.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def crete_cvs_from_profile_templates(cls):
cls.objects.filter(profile__auto_created=True).delete()
from .tex import Tex

for tex in Tex.objects.all():
for tex in Tex.objects.filter(active=True):
for profile in Profile.objects.filter(category="template"):
obj = cls.objects.create(profile=profile, tex=tex, auto_created=True)
obj.render_files()
Expand Down

0 comments on commit 272248b

Please sign in to comment.