Page MenuHomeGRNET

No OneTemporary

File Metadata

Created
Thu, Apr 3, 2:53 AM
diff --git a/app/views/admin/users/_form.html.erb b/app/views/admin/users/_form.html.erb
index df81432..f37c60c 100644
--- a/app/views/admin/users/_form.html.erb
+++ b/app/views/admin/users/_form.html.erb
@@ -1,15 +1,15 @@
-<%= bootstrap_form_for(@user, url: admin_users_path, method: :post, layout: :horizontal,
+<%= bootstrap_form_for(@user, url: url, method: method, layout: :horizontal,
label_col: 'col-xs-3', control_col: 'col-xs-8') do |f| %>
<%= f.text_field :username, required: true %>
<%= f.password_field :password, required: true %>
<%= f.password_field :retype_password, required: true %>
<%= f.email_field :email, required: true %>
<div class="form-group">
<div class="col-xs-offset-8 col-xs-3">
<%= f.submit class: 'btn btn-success' %>
</div>
</div>
<% end %>
<%= link_to 'Cancel', admin_users_path, class: 'btn btn-danger', role: 'button' %>
diff --git a/app/views/admin/users/edit.html.erb b/app/views/admin/users/edit.html.erb
index 52f80b6..ad97e64 100644
--- a/app/views/admin/users/edit.html.erb
+++ b/app/views/admin/users/edit.html.erb
@@ -1,13 +1,13 @@
<%= render partial: 'header' %>
<div class="row">
<div class="col-xs-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3>Edit Admin</h3>
- <%= render partial: 'form' %>
+ <%= render partial: 'form', locals: { url: admin_user_path(@user), method: :patch } %>
</div>
</div>
</div>
</div>
diff --git a/app/views/admin/users/new.html.erb b/app/views/admin/users/new.html.erb
index 5427af3..2cca3a3 100644
--- a/app/views/admin/users/new.html.erb
+++ b/app/views/admin/users/new.html.erb
@@ -1,13 +1,13 @@
<%= render partial: 'header' %>
<div class="row">
<div class="col-xs-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3>New Admin</h3>
- <%= render partial: 'form' %>
+ <%= render partial: 'form', locals: { url: admin_users_path, method: :post } %>
</div>
</div>
</div>
</div>

Event Timeline