django-ckeditor:未在表单中加载数据

时间:2017-04-18 12:31:40

标签: python django django-ckeditor

我使用Django-ckeditor作为模型表单widget。我已经能够使用模型表单保存数据。

现在我想编辑任何已保存的数据,表单不会将数据加载到CKeditor上。 Django 1.10 Python 3.5 Windows 7 64位

forms.py

class templateform(forms.ModelForm):
    class Meta:
        model = presciptiontemplates
        fields = ['template', 'templateid', ]
        widgets = {
            'template': CKEditorWidget(),
        }
        labels = {
            "templateid": _("Patient ID"),
            }

views.py

def get_template(request, tid):
template = presciptiontemplates.objects.get(templateid=tid)
form = templateform(request.POST, instance=template)
if form.is_valid():
        form = form.save(commit=False)
        form.patientid = tid
        form.save()
else:
    form = templateform(request.POST, instance=template)
return render(request, 'presapp/viewtemplate.html',{'form': form})

HTML

 <div id="preview-content">
    <form method="post" style="margin-top:20px;">
        {% csrf_token %}
         {{ form.media }}
         {{ form|safe }}
        <div class="" style="margin-top:20px ;">
            <button class="btn waves-effect waves-light left" type="submit">Submit
    <i class="material-icons right">add_circle</i
    </button>
    </form>
    </div>
</div>

0 个答案:

没有答案