blob: 31c3cb0b950f89d72a18e6f9ce12a9d7ae073583 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
- title t("call_routes.show.page_title")
%p
%strong= t('call_routes.show.table') + ":"
= @call_route.table
%p
%strong= t('call_routes.show.name') + ":"
= @call_route.name
%p
%strong= t('call_routes.show.endpoint_type') + ":"
= @call_route.endpoint_type
%p
%strong= t('call_routes.show.endpoint_id') + ":"
= @call_route.endpoint_id
%p
%strong= t('call_routes.show.position') + ":"
= @call_route.position
= render :partial => 'shared/show_edit_destroy_part', :locals => { :child => @call_route }
|