diff --git a/app/views/admin/organizations/index.html.erb b/app/views/admin/organizations/index.html.erb
index df003e6f8..3c2b2b83c 100644
--- a/app/views/admin/organizations/index.html.erb
+++ b/app/views/admin/organizations/index.html.erb
@@ -37,23 +37,17 @@
Colectivo |
+
+
+ <%= link_to t("admin.organizations.index.edit"), "", class: "button radius tiny" %>
+
+ |
<% if organization.verified? %>
<%= t("admin.organizations.index.verified") %>
|
<% end %>
- <% if organization.rejected? %>
-
-
- <%= t("admin.organizations.index.rejected") %>
- |
- <% end %>
-
-
- <%= link_to t("admin.organizations.index.edit"), "", class: "button radius tiny secondary" %>
-
- |
<% if can? :verify, organization %>
<%= link_to t("admin.organizations.index.verify"),
@@ -62,6 +56,12 @@
%>
|
<% end %>
+ <% if organization.rejected? %>
+
+
+ <%= t("admin.organizations.index.rejected") %>
+ |
+ <% end %>
<% if can? :reject, organization %>
<%= link_to t("admin.organizations.index.reject"),
reject_admin_organization_path(organization, request.query_parameters),
diff --git a/app/views/admin/tags/index.html.erb b/app/views/admin/tags/index.html.erb
index 6e18ef009..3752421e1 100644
--- a/app/views/admin/tags/index.html.erb
+++ b/app/views/admin/tags/index.html.erb
@@ -32,10 +32,12 @@
as: :tag,
html: { id: "edit_tag_#{tag.id}", class: "text-right"}) do |f| %>
- <%= f.label "featured_#{tag.id}" do %>
- <%= f.check_box :featured, label: false, id: "tag_featured_#{tag.id}", class: "left" %>
- <%= t("admin.tags.mark_as_featured") %>
- <% end %>
+
+ <%= f.label "featured_#{tag.id}" do %>
+ <%= f.check_box :featured, label: false, id: "tag_featured_#{tag.id}", class: "inline-block" %>
+ <%= t("admin.tags.mark_as_featured") %>
+ <% end %>
+
<%= f.submit(class: "button radius tiny success") %>
|