Merge pull request #64 from codersquid/json_placeholders
adds placeholder values for future model changes to ProposalBase
This commit is contained in:
commit
f4c4009c4d
1 changed files with 12 additions and 1 deletions
|
@ -179,6 +179,17 @@ def schedule_json(request):
|
||||||
"duration": slot.length_in_minutes,
|
"duration": slot.length_in_minutes,
|
||||||
"kind": slot.kind.label,
|
"kind": slot.kind.label,
|
||||||
"section": slot.day.schedule.section.slug,
|
"section": slot.day.schedule.section.slug,
|
||||||
|
"conf_key": slot.pk,
|
||||||
|
# TODO: models should be changed.
|
||||||
|
# these are model features from other conferences that have forked symposion
|
||||||
|
# these have been used almost everywhere and are good candidates for
|
||||||
|
# base proposals
|
||||||
|
"license": "CC BY",
|
||||||
|
"tags": "",
|
||||||
|
"released": True,
|
||||||
|
"contact": [],
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
if hasattr(slot.content, "proposal"):
|
if hasattr(slot.content, "proposal"):
|
||||||
slot_data.update({
|
slot_data.update({
|
||||||
|
@ -189,7 +200,7 @@ def schedule_json(request):
|
||||||
] if request.user.is_staff else ["redacted"],
|
] if request.user.is_staff else ["redacted"],
|
||||||
"abstract": slot.content.abstract.raw,
|
"abstract": slot.content.abstract.raw,
|
||||||
"description": slot.content.description.raw,
|
"description": slot.content.description.raw,
|
||||||
"content_href": "%s://%s%s" % (
|
"conf_url": "%s://%s%s" % (
|
||||||
protocol,
|
protocol,
|
||||||
Site.objects.get_current().domain,
|
Site.objects.get_current().domain,
|
||||||
reverse("schedule_presentation_detail", args=[slot.content.pk])
|
reverse("schedule_presentation_detail", args=[slot.content.pk])
|
||||||
|
|
Loading…
Reference in a new issue