provision-done.html.j2 (2411B)
1 {% extends "provision-base.html.j2" %} 2 3 {% block main %} 4 <h2>{{ gettext("Your merchant instance has been created") }}</h2> 5 <p> 6 {{ gettext("Please copy this information:") }} 7 <table> 8 <tr> 9 <th>{{ gettext("merchant full name") }}:</th> 10 <td>{{fullname}}</td> 11 </tr> 12 <tr> 13 <th>{{ gettext("merchant-id") }}:</th> 14 <td>{{merchant_id}}</td> 15 </tr> 16 <tr> 17 <th>{{ gettext("access-token/password") }}:</th> 18 <td>{{access_token}}</td> 19 </tr> 20 </table> 21 </p> 22 <p> 23 {{ gettext("With the merchant-id and access-token, you can now:") }} 24 <ul> 25 <li>{{ gettext("Login to the <a href='{url}'>bank for this environment</a> to see incoming wire transfers from the exchange.").format(url=bank_url) }}</li> 26 <li>{{ gettext("Login to your merchant's <a target='_blank' href='{url}/instances/{id}/webui/#/orders'>backend instance</a> for administration.").format(url=merchant_url,id=merchant_id) }}. 27 {{ gettext("For example, you might want to add products to the inventory, add categories etc.") }} 28 {{ gettext("Check out our <a href='https://tutorials.taler.net/merchant/merchant-backoffice/instance'>tutorial on Instance management</a> for more details.") }} 29 </li> 30 <li>{{ gettext("After creating an inventory, configure the GNU Taler Point-of-Sale Android App to use your merchant's base URL <pre><a target='_blank' href='{url}/instances/{id}'>{url}/instances/{id}</a></pre>").format(url=merchant_url,id=merchant_id) }} 31 {{ gettext("For more details, see our <a href='https://tutorials.taler.net/merchant/pos/pos-config'>tutorial on the Point-of-Sale application</a>.") }} 32 </li> 33 <li>{{ gettext("Create orders (for the currency {currency}), via the REST-API at <pre>{url}/instances/{id}/private/orders</pre> For more details, check our <a target='_blank' href='https://tutorials.taler.net/dev/merchant-api/index'>tutorial on the Merchant backend API</a>.").format(currency=currency,url=merchant_url,id=merchant_id) }}</li> 34 </ul> 35 </p> 36 <p> 37 {{ gettext("<b>Note:</b> the merchant instance will be automatically removed when") }} 38 <ol> 39 <li>{{ gettext("no order has been created within {timeout} <i>right after</i> creation, or").format(timeout=timeout_init) }} </li> 40 <li>{{ gettext("no order has been created for {timeout}.".format(timeout=timeout_idle)) }}</li> 41 </ol> 42 </p> 43 44 <h3>Happy Hacking!</h3> 45 46 {% endblock main %}