Sha256: 2551c107c54218359115eeb48fb7ef9eb0588d15870efaccf725d542290bb1ea

Contents?: true

Size: 1.24 KB

Versions: 20

Compression:

Stored size: 1.24 KB

Contents

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

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

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

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

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

      th.hidden-xs
        = ::Dorsale::BillingMachine::Quotation.t(:state)

      th
        = t("actions.actions")

  tbody
    - quotations.each do |quotation|
      tr class="quotation #{quotation_state_classes(quotation)}"
        td.hidden-sm.hidden-xs.date
          = date(quotation.date)

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

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

        td.total_excluding_taxes
          = euros(quotation.total_excluding_taxes)

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

        td
          = quotation.t("state.#{quotation.state}")

        td.actions
          = read_button dorsale.billing_machine_quotation_path(quotation)

Version data entries

20 entries across 20 versions & 1 rubygems

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