WIP Feature/search
2 unresolved threads
2 unresolved threads
Merge request reports
Activity
11 13 12 14 from api.serializers import * 13 15 from core.models import * 16 from core.search import DocumentPartDocument Would it be enough to change its name to DocumentPartESDocument? By the way, import *, is not good, that's something you can point out in a review. Did you read the guidelines?
changed this line in version 4 of the diff
96 96 97 97 name = models.CharField(max_length=128) 98 98 name_fr = models.CharField(max_length=128, blank=True) 99 iso_code = models.CharField(max_length=4, blank=True) 99 iso_code = models.CharField(max_length=4, blank=True) The iso_code in the script model is not the same as the iso_code from the language model, in Language its this standard and in Script it's this one.
Please register or sign in to reply