MorningPeak/app/views/bills/show.html.slim
Arthur Poulet 81f02e27fe fix titles
2015-07-14 01:42:27 +02:00

33 lines
846 B
Plaintext

h1.page-header = "Bill: #{@bill.title}"
p
strong Client:
= link_to @bill.client.name, @bill.client
p
strong Title:
= @bill.title
p
strong Description:
= @bill.description
p
strong Amount:
= @bill.amount
p
strong Paid:
= @bill.paid
p
strong Emission date:
= @bill.emission_date
p
strong Due date:
- if @bill.due_date < Date.today
- if @bill.paid
.bg-success = distance_of_time_in_words_to_now(@bill.due_date) + " - " + @bill.due_date.to_s(:long)
- else
.bg-danger = distance_of_time_in_words_to_now(@bill.due_date) + " - " + @bill.due_date.to_s(:long)
- else
.bg-info = distance_of_time_in_words_to_now(@bill.due_date) + " - " + @bill.due_date.to_s(:long)
= link_to 'Edit', edit_bill_path(@bill), class: 'btn btn-sm btn-default'
= link_to 'Back', bills_path, class: 'btn btn-sm btn-default'