traduction des messages de workflow.
[Plinn.git] / Products / Plinn / skins / generic / content_publish_form.pt
1 <html metal:use-macro="here/transition_form/macros/master">
2 <head>
3 <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
4 </head>
5 <body i18n:domain="plinn">
6 <div metal:fill-slot="main">
7
8 <h2 i18n:translate="">Publish: "<span tal:replace="here/title_or_id"
9 i18n:name="docTitle">Item</span>"</h2>
10 <div i18n:translate="publish_transition_explanations">
11 The publication of this content will make it available to all visitors and
12 prevent its suppression.
13 </div>
14 </div>
15
16 <form action="dummy">
17 <div metal:fill-slot="form">
18 <fieldset tal:define="creators python:[m for m in mtool.getMembers(here.listCreators()) if m != member]"
19 tal:condition="creators">
20 <legend i18n:translate="">Notify by e-mail</legend>
21 <div tal:repeat="member creators" tal:omit-tag="">
22 <label>
23 <input type="checkbox" name="recipients:list" value="membre" tal:attributes="value member/id"/>
24 <span tal:replace="member/getMemberFullName">membre</span>
25 </label><br/>
26 </div>
27 </fieldset>
28 <input type="hidden" name="workflow_action" value="publish" tal:attributes="value python:request.get('direct')==True and 'direct_publish' or 'publish'" />
29 <input type="submit" value="Publish" i18n:attributes="value" />
30 </div>
31 </form>
32 </body>
33 </html>