Customizable API auditing URLs via template filter (#652)

Closes #636
This commit is contained in:
Adarnof
2017-01-19 23:01:26 -05:00
committed by GitHub
parent f5cb6a3fb7
commit 0292ad07ad
18 changed files with 243 additions and 192 deletions

View File

@@ -15,7 +15,7 @@ class ApplicationQuestion(models.Model):
help_text = models.CharField(max_length=254, blank=True, null=True)
def __str__(self):
return "Question: " + self.title.encode('utf-8')
return "Question: " + self.title
@python_2_unicode_compatible