Dexterity 型を使用して作成したフォーム パッケージのカスタム編集/追加フォームを作成しようとしています。私はDexterity Developer Manualセクションの Plone Developer Documentation の Schema-driven types チュートリアルに従っています。これまでのところ、FAQ と質問の 2 つのコンテンツ タイプを持つ Dexterity パッケージの作成に成功しました。私の FAQ Dexterity コンテンツ タイプはコンテナーであり、私の Question Dexterity コンテンツ タイプは、私の FAQ コンテナー内にのみ追加できます。
FAQ コンテンツ タイプ- FAQ.py
from product.faq import MessageFactory as _
from five import grok
from plone.dexterity.content import Container
from plone.directives import dexterity, form
from zope import schema
from zope import interface
from Acquisition import aq_inner
from Products.CMFCore.utils import getToolByName
from product.faq.question import IQuestion
class IFAQ(form.Schema):
""" Project FAQ Container """
class FAQ(Container):
grok.implements(IFAQ)
class View(grok.View):
""" FAQ View Class """
grok.context(IFAQ)
grok.require('zope2.View')
def questions(self):
""" Return a catalog search result of questions to show """
context = aq_inner(self.context)
catalog = getToolByName(context, 'portal_catalog')
return catalog(object_provides=IQuestion.__identifier__,
path='/'.join(context.getPhysicalPath()),
sort_on='sortable_title')
質問タイプ- Question.py
from product.faq import MessageFactory as _
from five import grok
from plone.dexterity.content import Container
from plone.directives import dexterity, form
from zope import schema
from zope import interface
class IQuestion(form.Schema):
""" Project FAQ Question Type """
title = schema.TextLine(
title=_(u"Question"),
)
answer = schema.TextLine(
title=_(u"Answer"),
)
# Used to group questions into sections
section = schema.TextLine(
title=_(u"Section"),
)
class Question(Container):
grok.implements(IQuestion)
class Edit(grok.Form):
""" FAQ Question Edit Class """
grok.context(IQuestion)
grok.require('zope2.View')
追加ビューと編集ビューの両方のフォーム マークアップをカスタマイズできる必要があります。これまでのところ、機能のない編集ビューを作成できました。フォームに機能を追加するにはどうすればよいですか?
edit.py
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
lang="en"
metal:use-macro="context/main_template/macros/master"
i18n:domain="product.faq">
<body>
<metal:main fill-slot="content-core">
<metal:content-core define-macro="content-core">
<h2>This is a Edit Form</h2>
<ul class="list-unstyled">
<li><strong>Plone's Title is: </strong><i tal:content="context/Title"></i></li>
<li><strong>Plone's Description is: </strong><i tal:content="context/Description"></i></li>
</ul>
<form class="form-horizontal clearfix" role="form">
<div class="form-group">
<label for="faqQuestion" class="col-lg-2 control-label">Question</label>
<div class="col-lg-10">
<input tal:attributes="value context/title" type="textfield" class="form-control" id="faqQuestion" placeholder="Enter a question">
</div>
</div>
<div class="form-group">
<label for="faqAnswer" class="col-lg-2 control-label">Answer</label>
<div class="col-lg-10">
<input tal:attributes="value context/answer" type="textfield" class="form-control" id="faqAnswer" placeholder="Enter a answer">
</div>
</div>
<div class="form-group">
<label for="faqSection" class="col-lg-2 control-label">Section</label>
<div class="col-lg-10">
<input tal:attributes="value context/section" type="textfield" class="form-control" id="faqSection" placeholder="Enter a grouping">
</div>
</div>
<div class="btn-group pull-right">
<a href="#" class="btn btn-primary">Save</a>
<a href="#" class="btn btn-danger">Cancel</a>
</div>
</form>
</metal:content-core>
</metal:main>
</body>
</html>
私の他の問題は、カスタム追加ビューを作成するにはどうすればよいですか? クリックすると、URL ポイントを に追加しhttp://localhost:8080/demo/faq/++add++product.faq.question
ます。++add++ はウィジェットであることを示していますか?
前もって感謝します。