Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
5911 Lượt xem

Hello,
I want to open form view through template in controller.

Controller.py


class SurveyCreate(http.Controller):

@http.route('/survey/create',type='http',auth='public')
def createsurvey(self):
return request.render('survey_dash.template_survey_create')


template.xml

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<template id="template_survey_create" name="Survey Create">
<t t-call="survey.layout">
<div class="wrap">
<a t-att-action="%(survey.survey_form)d"/>
</div>
</t>
</template>
</data>
</odoo>

but nothing will display.can any one please tell me how to display form view.is it possible?
If yes, how? Or any alternative way.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

No, you can not open form view in frontend because it's not designed that way, the architecture of both are very different.
backend is a single page application with all the resource and model/controller/renderer etc.. while frontend has a web page with minimal resources. 

An alternative is you can redirect the user to the backend (user have to log in with username/password :()

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 8 20
4488
No data in POST Đã xử lý
1
thg 10 20
2843
1
thg 4 20
7891
2
thg 2 24
15049
2
thg 9 22
4198