django-rest-framework-docs icon indicating copy to clipboard operation
django-rest-framework-docs copied to clipboard

Document Web APIs made with Django Rest Framework

Results 75 django-rest-framework-docs issues
Sort by recently updated
recently updated
newest added

Hey there, DRF docs looks really cool. But it looks like the project doesn't currently have support for viewsets that implement a `get_serializer` method. In my case, I use information...

When using ModelViewSets, the apis shown in doc are wrong. ``` python class UserInfoSerializer(ModelSerializer): class Meta: model = User class UserInfo(ModelViewSet): queryset = User.objects.all() serializer_class = UserInfoSerializer urlpatterns = [...

![1](https://cloud.githubusercontent.com/assets/16425208/14583433/68bf9356-042a-11e6-9550-e90e4c240fc9.png) ``` class MessagesSerializers(serializers.ModelSerializer): message = serializers.CharField(min_length=1) class Meta: model = ChatMessages fields = ('message','chat','user','date') read_only_fields = ('chat','user') ```

bug
live-api

f I use APIView to design API, what should I do eg : `url(r'^alipay.pay.unified.order/$', views.AlipayPayUnifiedOrderView.as_view(), name='alipay.pay.unified.order'), ` ``` class AlipayPayUnifiedOrderView(BaseOpenGateWayRequestView): request_params = ('merchant_code', 'total_amount', 'out_trade_no', 'subject', 'card_code') def get(self, request,...

Hello, don't worry, I just got to know this library and I want to use it, but it shows me this error, what should I do? ![image](https://github.com/manosim/django-rest-framework-docs/assets/130686922/66e80c14-584f-488c-9bc7-a71e0c3da250)