Merge pull request #98 from danieldupriest/adjust_json_key
Removed extra keys
This commit is contained in:
commit
648c2a5851
1 changed files with 1 additions and 6 deletions
|
@ -1,10 +1,8 @@
|
|||
from rest_framework.decorators import api_view, parser_classes
|
||||
from rest_framework.decorators import api_view
|
||||
from django.http import JsonResponse
|
||||
from .models import *
|
||||
from .policy import pol
|
||||
import os
|
||||
from rest_framework.exceptions import ParseError
|
||||
from rest_framework.parsers import FileUploadParser, MultiPartParser
|
||||
|
||||
def get_report(report_pk):
|
||||
"""
|
||||
|
@ -81,13 +79,10 @@ def get_fields(s_id):
|
|||
# function that gets the corresponding datatype
|
||||
value = Field.get_datatype(i)
|
||||
data = {
|
||||
"completed": i.completed,
|
||||
"field_name": i.field_name,
|
||||
"label": i.label,
|
||||
"field_type": i.field_type,
|
||||
"number": i.number,
|
||||
"value": value,
|
||||
"id": i.id,
|
||||
}
|
||||
# append the fields to array
|
||||
# use copy() to avoid overwriting
|
||||
|
|
Loading…
Reference in a new issue