Sha256: 9e6c6c1c8be79543aed46eb0459b306cc64be34ab98fbb90c22819a332080326

Contents?: true

Size: 1.01 KB

Versions: 16

Compression:

Stored size: 1.01 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_duty)

      th.hidden-xs
        = ::Dorsale::BillingMachine::Invoice.t(:total_all_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_duty
          = euros(invoice.total_duty)

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

        td.actions
          = read_button dorsale.billing_machine_invoice_path(invoice)

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
dorsale-2.1.15 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.14 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.13 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.12 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.11 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.10 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.9 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.8 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.7 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.6 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.5 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.4 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.3 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.2 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.1 app/views/dorsale/billing_machine/invoices/_list.html.slim
dorsale-2.1.0 app/views/dorsale/billing_machine/invoices/_list.html.slim