blob: 85b816633f660f8a3f86ca3430edfa41019fc86d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
- content_for :title, t("switchboard_entries.show.page_title")
.row
.span6
%table.table.table-striped
%tr
%td
%strong= t('switchboard_entries.show.sip_account_id') + ":"
%td
= @switchboard_entry.sip_account
%tr
%td
%strong= t('switchboard_entries.show.name') + ":"
%td
= @switchboard_entry.name
%tr
%td
%strong= t('switchboard_entries.show.position') + ":"
%td
= @switchboard_entry.position
%tr
%td
%strong= t('switchboard_entries.show.switchable') + ":"
%td
= @switchboard_entry.switchable
= render :partial => 'shared/show_edit_destroy_part', :locals => {:parent => @switchboard, :child => @switchboard_entry }
|