+ if settings.LIMIT_TAG_CREATION and not self.user.can_create_tags():
+ existent = Tag.objects.filter(name__in=list_temp).values_list('name', flat=True)
+
+ if len(existent) < len(list_temp):
+ unexistent = [n for n in list_temp if not n in existent]
+ raise forms.ValidationError(_("You don't have enough reputation to create new tags. The following tags do not exist yet: %s") %
+ ', '.join(unexistent))
+
+