update path after renaming author

This commit is contained in:
j 2009-08-28 12:03:07 +02:00
parent b1ce39b51b
commit c69484f6b3
2 changed files with 4 additions and 1 deletions

View File

@ -8,7 +8,7 @@ import models
class TextAdmin(admin.ModelAdmin):
search_fields = ['title', 'authors__name']
search_fields = ['title', 'authors__name', 'languages__name']
list_display = ('title', 'version', 'file')
list_filter = ('authors', )
admin.site.register(models.Text, TextAdmin)

View File

@ -32,6 +32,9 @@ class Author(models.Model):
if not self.name_sort:
self.name_sort = oxlib.normalize.canonicalName(self.name)
super(Author, self).save(*args, **kwargs)
#update path in related texts
for text in self.texts.all():
text.save()
class Language(models.Model):
name = models.CharField(blank=True, max_length=1000)