f7bfe801c0
- add french locales - add date diff in words - improve date diff with colors - improve navbar - fix views
33 lines
824 B
Plaintext
33 lines
824 B
Plaintext
p#notice = notice
|
|
|
|
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'
|