Questions tagged as 'django-urls'

0
answers

Django Rest Framework - Allowing blanks in a CharField

I have the following model, which in its attribute name I want to allow compound names or blank spaces, for example Real Madrid class Team(models.Model): name = models.CharField( _('name'), max_length=30,...
asked by 03.05.2017 / 05:13
0
answers

Url with period "." in Django Rest Framework

I have the following model with primary_key=True specified classTeam(models.Model): name = models.CharField( max_length=64, primary_key=True, ) ... other fields My serializer is the following: classTeamS...
asked by 11.01.2017 / 06:23