summaryrefslogtreecommitdiff
path: root/app/views/fax_accounts/_form_core.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/fax_accounts/_form_core.html.haml')
-rw-r--r--app/views/fax_accounts/_form_core.html.haml11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/views/fax_accounts/_form_core.html.haml b/app/views/fax_accounts/_form_core.html.haml
new file mode 100644
index 0000000..8153e5f
--- /dev/null
+++ b/app/views/fax_accounts/_form_core.html.haml
@@ -0,0 +1,11 @@
+.inputs
+ = f.input :name, :label => t('fax_accounts.form.name.label'), :hint => conditional_hint('fax_accounts.form.name.hint')
+ = f.input :station_id, :label => t('fax_accounts.form.station_id.label'), :hint => conditional_hint('fax_accounts.form.station_id.hint')
+ = f.input :retries, :label => t('fax_accounts.form.retries.label'), :hint => conditional_hint('fax_accounts.form.retries.hint')
+ = f.input :email, :label => t('fax_accounts.form.email.label'), :hint => conditional_hint('fax_accounts.form.email.hint')
+
+ = f.input :days_till_auto_delete, :label => t('fax_accounts.form.days_till_auto_delete.label'), :hint => conditional_hint('fax_accounts.form.days_till_auto_delete.hint')
+
+ %h2= t('phone_numbers.name')
+ = f.simple_fields_for :phone_numbers, @fax_account.phone_numbers do |phone_number|
+ = render "phone_numbers/form_core", :f => phone_number