MorningPeak/app/views/client_tickets/show.html.slim
Arthur Poulet 0ea64494d3 Fix client_tickets translation
- missing little sentences
- remove .buttons to global translations
2015-07-24 23:12:50 +02:00

69 lines
1.8 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

h1.page-header = "Ticket: #{@ticket.head.title}"
p
strong
| Id: #
= @ticket.id
p
strong = t ".respond_to"
|: 
= link_to @ticket.head.title, client_ticket_path(@ticket.head)
p
strong = t ".state"
|: 
- if @ticket.head.state == Ticket::CLOSE
td.bg-danger = t ".states.close"
- else
td.bg-success = t ".states.open"
p
strong = t ".creator"
|: 
span.ticket-creator = link_to_creator @ticket
p
strong = t ".title"
|: 
= @ticket.title
p
strong = t ".description"
|: 
.container-fluid.ticket-description
= @ticket.description
- if not @ticket.tickets.empty?
table.table.table-condensed
thead
tr
th = t ".creator"
th = t ".title"
th = t ".description"
th = t ".state"
th = t ".last_update"
th
/ th
tbody
- @ticket.tickets.each do |ticket|
tr
td = link_to_creator(ticket)
td = link_to ticket.title, client_ticket_path(ticket)
td = ticket.short_description
- if ticket.state == Ticket::CLOSE
td.bg-danger = ticket.state
- else
td.bg-success = ticket.state
td = ticket.updated_at.to_s(:long)
td = link_to (t "show"), client_ticket_path(ticket)
td = link_to (t "edit"), edit_client_ticket_path(ticket)
br
- if @ticket.open?
= link_to (t 'respond'), client_ticket_respond_path(@ticket), class: 'btn btn-sm btn-default'
= link_to (t 'close'), client_ticket_close_path(@ticket), method: :patch, class: 'btn btn-sm btn-success'
- else
= link_to (t 'reopen'), client_ticket_open_path(@ticket), method: :patch, class: 'btn btn-sm btn-danger'
= link_to (t 'edit'), edit_client_ticket_path(@ticket), class: 'btn btn-sm btn-default'
= link_to (t 'back'), client_tickets_path, class: 'btn btn-sm btn-default'