Initial commit

This commit is contained in:
2020-01-27 08:56:08 +01:00
commit b7525048d6
27129 changed files with 3409855 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="order-edit.html" server="51.254.220.106//web/" local="131351948400000000" remote="131351948400000000" />
</dwsync>

View File

@@ -0,0 +1,20 @@
<div id="order-comment">
<div class="clearfix"></div>
<div class="title title-without-tabs clearfix">
{intl l="Comment" d="ordercomment.bo.default"}
</div>
{ifloop rel="order_comment_loop"}
{loop type="order.comment.comment" name="order_comment_loop" order_id="$order_id" }
<ul class="list-unstyled">
<li><strong>{intl l="Message" d="ordercomment.bo.default"} :</strong></li>
<li>{$ORDER_COMMENT|nl2br nofilter}</li>
</ul>
{/loop}
{/ifloop}
{elseloop rel="order_comment_loop"}
{intl l="No comment for this order was defined." d="ordercomment.bo.default"}
{/elseloop}
</div>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="cart-comment.html" server="51.254.220.106//web/" local="131351948400000000" remote="131351948400000000" />
</dwsync>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="cart-comment-js.js" server="51.254.220.106//web/" local="131351948400000000" remote="131351948400000000" />
</dwsync>

View File

@@ -0,0 +1 @@
$('#cart > a').slice(-2).remove();

View File

@@ -0,0 +1,21 @@
{form name="order.comment.form"}
<form id="order-comment-form" action="{url path='/ordercomment/set/comment'}" method="post">
{form_hidden_fields form=$form}
<div class="panel panel-default">
<div class="panel-heading">
{intl l="Add your comment" d="ordercomment.fo.default"}
</div>
<div class="panel-body">
{if $form_error}<div class="alert alert-danger">{$form_error_message}</div>{/if}
<div id="alert-comment"></div>
{form_field form=$form field='comment'}
<textarea class="form-control" name="{$name}" placeholder="{intl l='Type your message here' d='ordercomment.fo.default'}">{loop type="order.comment.session.comment" name="session-order-comment" }{ifloop rel="session-order-comment"}{$ORDER_COMMENT}{/ifloop}{/loop}</textarea>
{/form_field}
</div>
</div>
<a href="{navigate to="index"}" role="button" class="btn btn-default"><i class="fa fa-chevron-left"></i> {intl l="Continue Shopping"}</a>
<button type="submit" class="btn btn-primary pull-right"><i class="fa fa-chevron-right"></i> {intl l="Proceed checkout"}</button>
</form>
{/form}

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="delivery.after-summary.html" server="51.254.220.106//web/" local="131351948400000000" remote="131351948400000000" />
</dwsync>

View File

@@ -0,0 +1,11 @@
{loop type="order.comment.comment" name="order_comment_loop" order_id="$order_id" }
<table style="border:1px solid #333; margin:0; padding:0;">
<col style="padding: 0mm 3mm;" />
<tr>
<td class="table-3-module" style="border-left:solid 3px #f6993c;">
<strong>{intl l="Message" d="ordercomment.bo.default"}</strong> :<br />
{$ORDER_COMMENT|nl2br nofilter}
</td>
</tr>
</table>
{/loop}