URL wih dot in Django Rest Framework

2017-01-10 Thread Bernardo Garcia
I have the following model with a primary_key=True specified: 

class Team(models.Model):
name = models.CharField(
max_length=64,
primary_key=True,
)
... other fields


When I serialize this model, I do the following:

class TeamSerializer(serializers.ModelSerializer):
   class Meta:
model = Team
fields = ('url', 'name',) # and another fields



My viewset:

class TeamViewSet(viewsets.ModelViewSet):
lookup_value_regex = '[-\w.]'
queryset = Team.objects.all()
serializer_class = TeamSerializer
filter_fields = ('name',) # and another fields


My urls.py:

router = routers.DefaultRouter()
router.register(r'teams', TeamViewSet)

urlpatterns = [
url(r'^api/', include(router.urls)),

*# I am not sure if this url is right. I repeat of include(router.urls)*
url(r'^api/teams/(?P[-\w.]+)/', include(router.urls)),

url(r'^api-auth/', include('rest_framework.urls', 
namespace='rest_framework'))
]


Then, when I create a Team object with name attribute containing dot ., for 
example *Latinos F.C.* and I go to the rest url, I get:




I am not sure about of how to use the lookup_value_regex attribute in my 
viewset. In this answer  is 
used with some basic regex, but if I use it, any Team object is reachable 
via my serialized Rest API.

How to can I get a url like as: /api/teams/Name.F.C. in my serialized Team
 model?

-- 
You received this message because you are subscribed to the Google Groups 
"Django REST framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-rest-framework+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django Rest Framework - Could not resolve URL for hyperlinked relationship using view name “field-detail”

2016-11-14 Thread Bernardo Garcia
I understand. Thanks Xavier This works for me :)

On Monday, November 14, 2016 at 5:14:55 AM UTC-5, Xavier Ordoquy wrote:
>
> Hi,
>
> You declared your view as "fields" in the routers, so you should use 
> "fields-detail" as the view name for the hyperlink.
>
> Regards,
> Xavier,
> Linovia.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django REST framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-rest-framework+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.