diff --git a/app/views/admin/pages/_form.html.erb b/app/views/admin/pages/_form.html.erb index c89cfe1de..906c9ecea 100644 --- a/app/views/admin/pages/_form.html.erb +++ b/app/views/admin/pages/_form.html.erb @@ -74,23 +74,25 @@ <%= render partial: "landing_page_modal", locals: { page: @landing_page } %> <% end %> -
- <%= link_to "Feature Flag", "/admin/feature_flags" %>
- ">
- <%= FeatureFlag.exist?(@page.feature_flag_name) ? "Present" : "Not Present" %>
-
-
- <% if FeatureFlag.exist?(@page.feature_flag_name) %>
- Access to this page is being guarded by the feature flag <%= @page.feature_flag_name %>.
- <%= link_to "Modify flag here", "/admin/feature_flags/features/#{@page.feature_flag_name}" %>
- <% else %>
- Everyone has access. Optionally guard access to this page by creating feature <%= @page.feature_flag_name %>
- <%= link_to "here", "/admin/feature_flags/features" %>
- <% end %>
-
-
+ <%= link_to "Feature Flag", "/admin/feature_flags" %>
+ ">
+ <%= FeatureFlag.exist?(@page.feature_flag_name) ? "Present" : "Not Present" %>
+
+
+ <% if FeatureFlag.exist?(@page.feature_flag_name) %>
+ Access to this page is being guarded by the feature flag <%= @page.feature_flag_name %>.
+ <%= link_to "Modify flag here", "/admin/feature_flags/features/#{@page.feature_flag_name}" %>
+ <% else %>
+ Everyone has access. Optionally guard access to this page by creating feature <%= @page.feature_flag_name %>
+ <%= link_to "here", "/admin/feature_flags/features" %>
+ <% end %>
+
+