1 <html metal:use-macro="here/main_template/macros/master"
2 xmlns:tal="http://xml.zope.org/namespaces/tal"
3 xmlns:metal="http://xml.zope.org/namespaces/metal"
4 xmlns:i18n="http://xml.zope.org/namespaces/i18n">
6 <title>Shipping template</title>
7 <meta http-equiv="content-type" content="text/html;charset=utf-8" />
10 <body i18n:domain="portfolio">
11 <div metal:fill-slot="main_no_tabs" tal:omit-tag=""
12 tal:define="step_shipping python:True">
13 <div metal:use-macro="here/sell_macros/macros/sell_steps"></div>
14 <h2 i18n:translate="">Please set shipping informations</h2>
15 <form method="post" tal:attributes="action string:$portal_url/my_cart">
16 <table class="TwoColumnForm">
19 <input type="submit" name="set_shipping" value="Validate >>" i18n:attributes="value" />
23 <th i18n:translate="">Fullname</th>
25 <input name="shipping_fullname" tal:attributes="value options/shipping_fullname"/>
29 <th i18n:translate="">Address</th>
31 <textarea name="shipping_address" tal:content="options/shipping_address"
32 cols="30" rows="1" style="width:auto"></textarea>
36 <th i18n:translate="">City</th>
38 <input type="text" name="shipping_city" size="35" tal:attributes="value options/shipping_city"/>
42 <th i18n:translate="">Zip code</th>
44 <input type="text" name="shipping_zipcode" size="5" tal:attributes="value options/shipping_zipcode"/>
48 <th i18n:translate="">Country</th>
50 <select name="shipping_country"
51 tal:define="countries python:modules['Products.iso_3166_1'].fr.countries"
52 i18n:domain="iso_3166_1">
53 <option tal:repeat="c countries" tal:attributes="value python:c[0]; selected python:c[0]==options['shipping_country']" tal:content="python:c[0]" i18n:translate=""></option>
60 <input type="submit" name="set_shipping" value="Validate >>" i18n:attributes="value" />