This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#reset_datespick").on("click", function(event){ | |
$("#datesPick").val(""); | |
$('#datesPick').multiDatesPicker({ | |
'resetDates':'disabled' | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>Hej {% if billing_address.name %}{{ billing_address.name }}{% endif %}!</p> | |
<p></p> | |
<p>Vi har gemt din indkøbskurv på {{ shop.name }}, og den venter på dig!</p> | |
<p></p> | |
<p>I din indkøbskurv har du:</p> | |
<p></p> | |
<p>{% for line in line_items %}{{ line.quantity }}x {{ line.title }}{% endfor %}</p> | |
<p></p> | |
<p>Hvis du ønsker at fuldføre din bestilling, skal du blot klikke på følgende link:</p> | |
<p></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if customer.name %} | |
<p>Hej, {{ customer.name }}!</p> | |
<p></p> | |
{% endif %} | |
<p>Der er blevet oprettet en konto til dig, på {{ shop.name }}.</p> | |
<p></p> | |
<p>For at aktivere din konto, og oprette dit kodeord, skal du klikke på følgende link: </p> | |
<p></p> | |
<p>{{ customer.account_activation_url }}</p> | |
<p></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if customer.name %} | |
<p>Hej, {{ customer.name }}!</p> | |
<p></p> | |
{% endif %} | |
<p>Dette er en autogenereret e-mail, som bekræfter at din konto på {{ shop.name }} er blevet aktiveret.</p> | |
<p></p> | |
<p>Næste gang du køber hos {{ shop.name }}, kan du spare tid ved at logge ind på din konto. Dette vil autoudfylde dine tidligere informationer (navn, adresse, telefonnummer osv.), når du fuldfører din bestilling. </p> | |
<p></p> | |
<p>Ha' en fortsat god dag,</p> | |
<p>{{ shop.name }}</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
{% if customer.name %} | |
<p>Hej, {{ customer.name }}!</p> | |
<p></p> | |
{% endif %} | |
<p>Du har anmodet om en nulstilling af dit kodeord på {{ shop.name }}</p> | |
<p></p> | |
<p>Klik på følgende link, for at vælge et nyt kodeord:</p> | |
<p></p> | |
<p>{{ customer.reset_password_url }}</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
<p>{{ service_name }},</p> | |
<br> | |
<p>Venligst afsend ordre {{ name }}.</p> | |
<p>Total antal varer: {{ fulfillment.item_count }}</p> | |
<p>Antal unikke varer: {{ fulfillment.fulfillment_line_items.size }}</p> | |
<br> | |
<p><strong>Varer til afsending:</strong></p> | |
{% for line in fulfillment.fulfillment_line_items %} | |
<p>Vare: {{ line.line_item.title }}</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
<div style="font-family:Sans-Serif;font-size:12px;width:100%;margin:5px;"> | |
<p>Hej, {% if gift_card.customer %} {{ gift_card.customer.first_name }}{% endif %}!</p> | |
<p>Her er dit <a href="{{ shop.url }}">{{ shop.name }}</a> gavekort til en værdi á {{ gift_card.initial_value | money_without_trailing_zeros }}.</p> | |
{% if gift_card.initial_value != gift_card.balance %} | |
<p>Du har {{ gift_card.balance | money_without_trailing_zeros }} tilbage på dette gavekort.</p> | |
{% endif %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
<p>Hej, {{ shop_name }}!</p> | |
<p></p> | |
<p>{% if customer.name %}{{ customer.name }}{% else %}En person{% endif %} foretog en bestilling i dag, {{ date | date: "%b %d %I:%M%p" }}:</p> | |
<p></p> | |
<ul> | |
{% for line in line_items %} | |
<li> | |
<img src="{{ line | img_url: 'thumb' }}" /> {{ line.quantity }}x {{ line.title }} - {{ line.price | money }} pr. stk. | |
</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
{% if billing_address.name %} | |
<p>Hej, {{ billing_address.name }}!</p> | |
<p></p> | |
{% endif %} | |
<p>Din ordre {{ name }} blev afvist {% case cancel_reason %}{% when 'customer' %}efter dit ønske.{% when 'inventory' %}da vi desværre ikke har lager nok, til at gennemføre din ordre.{% when 'fraud' %}da din ordre blev markeret som svigagtig.{% when 'other' %}på grund af uforudsete omstændigheder.{% endcase %}</p> | |
<p></p> | |
<p>{% if financial_status == 'voided' %}Din betaling er blevet annulleret.{% elsif financial_status == 'credited' %}Din betaling er blevet refunderet.{% endif %}</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
<p>Tak for din bestilling hos {{ shop_name }}!</p> | |
<p>Denne e-mail er en ordrebekræftelse, som indikerer at vi har modtaget din ordre.</p> | |
<p>Dato: {{ date | date: "%m/%d/%Y" }}</p> | |
{% if requires_shipping and shipping_address %} | |
<p><b>Leveringsadresse:</b><br /> | |
{{ shipping_address.name }}<br /> | |
{{ shipping_address.street }}<br /> | |
{{ shipping_address.city }}<br /> | |
{{ shipping_address.province }} |
OlderNewer