mirror of
				https://gitlab.crans.org/mediatek/med.git
				synced 2025-11-04 09:42:11 +01:00 
			
		
		
		
	Fix author sort
This commit is contained in:
		@@ -102,7 +102,9 @@ class MediaAdminForm(ModelForm):
 | 
			
		||||
                    authors = self.cleaned_data['authors']
 | 
			
		||||
                    old_authors = authors.copy()
 | 
			
		||||
                    def sort(author):
 | 
			
		||||
                        return str(-author.note) + "." + str(old_authors.index(author)) + "." + author.name
 | 
			
		||||
                        return str(-author.note) + "." \
 | 
			
		||||
                               + str(old_authors.index(author)) \
 | 
			
		||||
                               + "." + author.name
 | 
			
		||||
                    authors.sort(key=sort)
 | 
			
		||||
                    author_name = self.cleaned_data['authors'][0].name
 | 
			
		||||
                    if ',' not in author_name and ' ' in author_name:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user