adds placeholder values for future model changes to ProposalBase"

This commit is contained in:
Sheila Miguez 2014-09-28 12:52:41 -05:00
parent 0fb224cbf6
commit 2c97ec7106

View file

@ -179,6 +179,17 @@ def schedule_json(request):
"duration": slot.length_in_minutes,
"kind": slot.kind.label,
"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"):
slot_data.update({
@ -189,7 +200,7 @@ def schedule_json(request):
] if request.user.is_staff else ["redacted"],
"abstract": slot.content.abstract.raw,
"description": slot.content.description.raw,
"content_href": "%s://%s%s" % (
"conf_url": "%s://%s%s" % (
protocol,
Site.objects.get_current().domain,
reverse("schedule_presentation_detail", args=[slot.content.pk])