You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

initial_data.json 579B

123456789101112
  1. [
  2. {
  3. "pk": 1,
  4. "model": "order.communicationeventtype",
  5. "fields": {
  6. "email_subject_template": "Oscar: Order confirmation for order #{{ order.number }} ",
  7. "code": "order-placed",
  8. "name": "Order placed",
  9. "email_body_template": "{% load currency_filters %}\r\nThanks for your order.\r\n\r\nContents:\r\n\r\n{% for line in order.lines.all %}\r\n{{ line.description }} (quantity: {{ line.quantity }}) - {{ line.line_price_before_discounts_incl_tax|currency }}\r\n{% endfor %}\r\n\r\n"
  10. }
  11. }
  12. ]