blob: f1a3e619ad47137b25e7a387eeddaf07fecc007b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
- content_for :title, t("voicemail_settings.show.page_title")
%p
%strong= t('voicemail_settings.show.voicemail_id') + ":"
= @voicemail_setting.voicemail
%p
%strong= t('voicemail_settings.show.name') + ":"
= @voicemail_setting.name
%p
%strong= t('voicemail_settings.show.value') + ":"
= @voicemail_setting.value
%p
%strong= t('voicemail_settings.show.class_type') + ":"
= @voicemail_setting.class_type
%p
%strong= t('voicemail_settings.show.description') + ":"
= @voicemail_setting.description
= render :partial => 'shared/show_edit_destroy_part', :locals => {:parent => @voicemail_setting.voicemail_account, :child => @voicemail_setting}
|