summaryrefslogtreecommitdiff
path: root/app/views/api/rows/_form.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/api/rows/_form.html.erb')
-rw-r--r--app/views/api/rows/_form.html.erb21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/views/api/rows/_form.html.erb b/app/views/api/rows/_form.html.erb
new file mode 100644
index 0000000..465b105
--- /dev/null
+++ b/app/views/api/rows/_form.html.erb
@@ -0,0 +1,21 @@
+<%= simple_form_for(@row) do |f| %>
+ <%= f.error_notification %>
+
+ <div class="inputs">
+ <%= f.input :user_name %>
+ <%= f.input :last_name %>
+ <%= f.input :middle_name %>
+ <%= f.input :first_name %>
+ <%= f.input :office_phone_number %>
+ <%= f.input :internal_extension %>
+ <%= f.input :mobile_phone_number %>
+ <%= f.input :fax_phone_number %>
+ <%= f.input :email %>
+ <%= f.input :pin %>
+ <%= f.input :photo_file_name %>
+ </div>
+
+ <div class="actions">
+ <%= f.button :submit %>
+ </div>
+<% end %>