Sha256: 648e8d117861b2726632d569cd14a2d086ac9f221a3066b08dbef2c78ae01aee

Contents?: true

Size: 1.06 KB

Versions: 27

Compression:

Stored size: 1.06 KB

Contents

table.default.invoices
  thead
    tr
      th.hidden-sm.hidden-xs.date
        = ::Dorsale::BillingMachine::Invoice.t(:date)

      th.hidden-sm.hidden-md.hidden-xs
        = ::Dorsale::BillingMachine::Invoice.t(:tracking_id)

      th
        = ::Dorsale::BillingMachine::Invoice.t(:customer)

      th
        = ::Dorsale::BillingMachine::Invoice.t(:total_excluding_taxes)

      th.hidden-xs
        = ::Dorsale::BillingMachine::Invoice.t(:total_including_taxes)

      th
        = t("actions.actions")

  tbody
    - invoices.each do |invoice|
      tr class="invoice #{invoice.payment_status}"
        td.hidden-sm.hidden-xs.date
          = date(invoice.date)

        td.hidden-sm.hidden-md.hidden-xs.tracking_id
          = invoice.tracking_id

        td.customer_name
          = invoice.customer.try(:name)

        td.total_excluding_taxes
          = euros(invoice.total_excluding_taxes)

        td.hidden-xs.total_including_taxes
          = euros(invoice.total_including_taxes)

        td.actions
          = read_button dorsale.billing_machine_invoice_path(invoice)

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
dorsale-2.5.0 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.4.3 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.4.2 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.4.1 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.4.0 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.3.5 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.3.4 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.3.3 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.3.2 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.3.1 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.3.0 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.2.16 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.2.15 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.2.14 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.2.13 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.2.12 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.2.11 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.2.10 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.2.9 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.2.8 app/views/dorsale/billing_machine/invoices/_list.html.slim