An open API service indexing awesome lists of open source software.

https://github.com/raiderrobert/drf-editable

Allows you to more easily talk to Django Rest Framework with JS
https://github.com/raiderrobert/drf-editable

django django-rest-framework javascript

Last synced: 3 months ago
JSON representation

Allows you to more easily talk to Django Rest Framework with JS

Awesome Lists containing this project

README

          

# drf-editable

A django app for integrating django rest framework into js

## Install via pip

pip install git+https://github.com/raiderrobert/drf-vue-editable/

## Add to installed apps
INSTALLED_APPS = [
...
'drf_editable',
]


## Load the drf_edtiable library and place the template tags appropriately
# some_html.html
{% load drfe %}



Hello World!

{% drfe_js %}


{% drfe resource='rest_framework:polls:detail' action='PATCH' fields='name' %}