eggification
[photoprint.git] / skins / order_notify_sent_form.pt
diff --git a/skins/order_notify_sent_form.pt b/skins/order_notify_sent_form.pt
deleted file mode 100644 (file)
index 3ad6be0..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-<html metal:use-macro="here/main_template/macros/master">
-  <head>
-    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
-  </head>
-  <body i18n:domain="photoprint">
-    <div metal:fill-slot="main_no_tabs"
-         tal:define="getToolByName python:modules['Products.CMFCore.utils'].getToolByName;
-                     wtool python:getToolByName(here, 'portal_workflow');
-                     review_state python: wtool.getInfoFor(here, 'review_state', wf_id='order_workflow')"
-         tal:omit-tag="">
-      <h2 i18n:translate="">Notify order "<span tal:replace="here/title_or_id" i18n:name="order_reference">Item</span>" sent.</h2>
-       <div i18n:translate="">
-         Notify that order has been sent.
-       </div>
-    
-      <form method="post" tal:attributes="action string:${here/absolute_url}/content_status_modify">
-        <p>
-          <span i18n:translate="" tal:omit-tag="">Current state:</span>
-          <span tal:content="review_state" i18n:translate="" tal:omit-tag="">state</span>
-        </p>
-        <h3 i18n:translate="">Tracking info</h3>
-        <table class="TwoColumnForm">
-          <tr>
-            <th i18n:translate="mail_subject">Subject</th>
-            <td tal:define="_ python:modules['Products.photoprint.utils'].translate">
-              <input type="text" size="58"
-                name="subject"
-                tal:attributes="value python:_('[%s] order %s sending notification') % (here.portal_photo_print.store_name, here.getId())"/>
-            </td>
-          </tr>
-          <tr>
-            <th i18n:translate="">Comments</th>
-            <td>
-              <textarea name="comment" cols="50" rows="8" i18n:translate="">
-                Your order has been sent. You will receive your prints soon.
-                You will be able to track your parcel with the informations
-                below.
-                
-                The <span tal:content="here/portal_photo_print/store_name|nothing"
-                          tal:omit-tag=""
-                          i18n:name="store_name"></span> team thanks you for your
-                confidence and wish you receipt you order.
-              </textarea>
-            </td>
-          </tr>
-          <tr>
-            <th i18n:translate="">Tracking number</th>
-            <td>
-              <input type="text" name="tracking_number" value="" size="20" />
-            </td>
-          </tr>
-          <tr>
-            <th i18n:translate="">Tracking url</th>
-            <td>
-              <input type="text" name="tracking_url" value="" size="58" />
-            </td>
-          </tr>
-          <tr>
-            <th i18n:translate="">Send email</th>
-            <td>
-              <label tal:repeat="member python:mtool.getMembers(here.listCreators())">
-                <input type="checkbox" name="recipients:list" tal:attributes="value member/id" checked="checked" />
-                <span tal:replace="member/getMemberFullName">Membre full name</span>
-                &lt;<span tal:replace="python:member.getProperty('email')">member email</span>&gt;
-              </label>
-            </td>
-          </tr>
-          <tr>
-            <td><br/></td>
-            <td>
-              <input type="hidden" name="syncFragments:tokens" value="rightCell" />
-              <input type="hidden" name="workflow_action" value="notify_sent" />
-              <input type="submit" value="Notify" i18n:attributes="value" />
-            </td>
-        </table>
-      </form>
-    </div>
-  </body>
-</html>