Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9254015
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:21:44+00:00 2026-06-18T11:21:44+00:00

I have two different layouts, one is completely custom and the other is bootstrap.

  • 0

I have two different layouts, one is completely custom and the other is bootstrap. For admins we want to render a bootstrap view and for non-admins we render it normally. For the most part this is pretty straight forward because admins and users don’t share many views — but there are some.

My original idea involved overriding render so that it would check if there’s a bootstrap version of a file. So for example there would be _user.html.erb and _user.bootstrap.html.erb which would have bootstrap specific templating.

I’d like to not modify any controllers so ideally, something like render 'form' would behave smartly and check if there’s an _form.bootstrap.html.erb, and if there isn’t it would fallback to _form.html.erb

First attempt

My first attempt looked something like this

# I don't think this is the actual method signature of render
def render(options=nil, extra_options, &block)
  # if it should render bootstrap and options is a string and there exists a bootstrap version
  #   set it up to render the bootstrap view
  super(options, extra_options, &b)
end

Current attempt

I’m thinking about registering a template that basically checks if a file exists and then uses erb. I haven’t made any progress towards this yet.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T11:21:45+00:00Added an answer on June 18, 2026 at 11:21 am

    I figured it out. This is how I did it:

    This is set in the application controller, with a before_filter :render_bootstrap

    def render_bootstrap
      return unless bootstrap?
      new_action = "#{self.action_name}.bootstrap"
      has_bs_view = template_exists?(new_action,params[:controller],false) ||  template_exists?(new_action,params[:controller], true)
      if has_bs_view
        self.action_name = new_action
      end
    end
    

    I decided to extend this even further so that inside of a view like show.bootstrap.html.erb you can still use render "form" without doing render "form.bootstrap". This was done by overwriting the rails render helper.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two different arrays, one with strings and another with ints. I want
I want to Animate two Different layouts. Example I already have the animation the
I have two layouts for one activity like layout-port and layout-land, with different designs.
I have two different layouts. One is which loads while start of the Activity
I have two different layouts in my app, one for javascript (AJAX) requests and
I have two layouts one for before API level-14 and the other is for
I have two Android applications with a similar functionality but different drawables and layouts.
I have two different libGL libraries on the same Ubuntu 11.04 machine. One library
I have two different buttons on my page. I want them both to be
i want to create a Listview with two different Layouts. The first item should

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.