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 --> | |
| {% 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
| {% 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
| {% 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
| <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
| $("#reset_datespick").on("click", function(event){ | |
| $("#datesPick").val(""); | |
| $('#datesPick').multiDatesPicker({ | |
| 'resetDates':'disabled' | |
| }); | |
| }); |
NewerOlder