0
votes
1answer
24 views

Backbone template variables only working with if I use this in template

In my template I have to put this.name and this.gravatar to access my user model data attributes. If I don't I get an error message when the template attempts to render. Everything works but I don't ...
0
votes
1answer
40 views

does emberjs have an equivalent to rails `yield :something`?

In rails you can do things like: application.html.erb: <h1><%= yield :title %></h1> <%= yield %> someother_template.html.erb: content_for :title { 'Some Title' } other ...
0
votes
0answers
11 views

How do I render another template from an ActionView::TemplateHandler?

I have a custom template handler that needs json to properly render a template. Rather than build this json manually, I'd like to use the same json I'd get from calling render :json in a request's ...
0
votes
0answers
25 views

How do I expire the cache for an ActionView::Template from my TemplateHandler?

I have a custom template handler who's render method isn't being called predictably for my templates. Rails is caching the compiled template into a method and only re-rending the template if it's ...
0
votes
1answer
58 views

How do I implement a to-do list style layout? [closed]

I'm building a simple to-do style application which has 2 main sections below the header: a navigation column on the left and the main section next to it on the right. Within the left nav, I want to ...
1
vote
1answer
51 views

Rendering a template based on object type in Rails

I'm writing a small forum app where users can create different types of forums. For example, an announcements, a discussions, or a questions forum. The Forum model has many posts, and a forum_type ...
1
vote
2answers
61 views

partials like rails has only done in pure javascript, and purely on the clients side. --I.E. no servers

I'm working on a little home brew project and I've found I've been spoiled by working with RoR and more specifically RoR partials. My project is entirely client side. So I'm using javascript and ...
1
vote
1answer
327 views

ember-rails & handlebars: specified templateName does not exist for one view, but does for all others

I'm working up an ember-rails app that precompiles Handlebars assets through the rails pipeline. Everything is updated to the latest versions via bundle update. When we load the index, the ember data ...
0
votes
2answers
35 views

Rspec routing error when redering ajax

Hey so i wrote a new feature and ran my test suit through Spork and i got a failing view test. this will be my first time looking at a view test so its a little confusing. I am getting the following ...
0
votes
2answers
73 views

Using form_for formBuilder defined in template during rendering a view?

I try to create a generic template including a form that has dynamic content, e.g. defined by the view using the template. (My current impl. fails as the view complains during rendering that f (the ...
0
votes
1answer
69 views

How to Correctly render partial template in Rails?

I have a Listing model that I am using to represent a listing for a sublet (apartment), and I created a Filter model as a way for a user to filter listings to his liking. Here in my Filter class, that ...
0
votes
1answer
65 views

Ruby on Rails Render Partial

I have a model called Listing that I use to represent a listing for a sublet. I created a model called Filter that I use to filter the sublets based on a form that the user fills out. Upon filling out ...
0
votes
1answer
47 views

How to do invoice text base reporting in rails?

I would like to build invoice text base to have following format: https://gist.github.com/samnang/9d35a8622af5779a9228 But when I try to render as text format from my controller, then I find out ...
0
votes
1answer
32 views

Rails: template folder

Good day, i tried some rails basics. I want to create one template and use these in my layoutfile. I created this file: views/template/sidebar.html.erb <% content_for (:sidebar) do %> ...
2
votes
1answer
95 views

Random rails partials 100 times slower than expected

I have a fairly large response view broken down into partials who's structure look like so, where * indicates this partial being loaded more than once: show -responses --response* ---comments ...
0
votes
2answers
74 views

Rails Form: Placeholder Text Ignored

This line is in one of my forms: <%= question.answer %><%= f.text_field :answer, :placeholder => "Respond..." %> It displays the answer to a question and shows a text field to update ...
0
votes
2answers
93 views

Rails Linked Models undefined method for nil:NilClass

I've been following this, making modifications where necessary. I have equivalents of @post and @comment. My comments are 'questions'. I've tried following this procedure again but to the comments ...
0
votes
1answer
137 views

Submit check_box_tag values along with link_to parameters

Another one from the SaaS class after quite some trial and only error. There's a table with movies that can be filtered (by checking boxes) and sorted by ratings (by clicking on theader). If filtered, ...
1
vote
2answers
42 views

How do I customize the content of model that is generated in Rails when I use scaffold generator?

Command Used rails generate scaffold student firstname:string lastname:string Generated Model Code is class Student < ActiveRecord::Base attr_accessible :firstname, :lastname end ...
0
votes
0answers
41 views

Why is my thor copy_file command not working?

I am trying to setup a rails app template and have this code in my sample.rb template file: run "bundle install" copy_file "/Users/amiterandole/Desktop/current/rails/templates/guard/Guardfile", "." ...
1
vote
2answers
221 views

Is there something similar to Twitter Bootstrap that uses Mustache templates?

Looking for HTML/CSS/Javascript template for a Rails app, but one that uses Mustache templates. Does something like this exist?
0
votes
1answer
82 views

Share rails templates front and back with JST support

I would like to share js templates between front and back in a rails application for cases where the code would be duplicated. The requirements are: Either underscore (ejs) or handlebars/mustache ...
1
vote
1answer
72 views

Rendering multiple erb in rails

I have layour/application.html.erb with all required headers and nav bar. I have yield only in body section. My dashboard.html.erb is hope page which is set of graphs. I want to write each graph in ...
0
votes
1answer
145 views

what is the use of <%% in underscore templates?

can some one tell me difference between "<%%" "<%" <%%= hello %> <%= hello %> i could not find proper answer in google search. Any explanations will be helpful :) ...
0
votes
1answer
70 views

Ruby on Rails, How to add projects to users/show.html.erb with has_many names :through blueprints

For each project that a user has blueprints for, I want to show the projects name and link to the project_path. Thanks. These are my ActiveRecords class User < ActiveRecord::Base ...
0
votes
1answer
41 views

Format Different Inputs with Different Styles

I have a rails template form with this code: <div class="field"> <%= f.label :title %><br /> <%= f.text_field :title %> </div> ... <div class="actions"> ...
0
votes
1answer
281 views

Ruby on Rails - format.js {} where to redirect?

I first apologize if my questions sounds fully, but I am completely new in Rails and I am not sure what is happening in the framework at all. I am reading a book about "Ruby on Rails" and I need ...
0
votes
1answer
184 views

Partial, Layout, Template rendering problems

The Situation So when I visit a page, I want to be able to apply a layout to a partial (I have three partials that I want with the same layout). Right now, I am trying to do it with this command: ...
1
vote
1answer
81 views

Rails and multipart emails with user-defined part selection and html to text autoconversion

Our Rails (3.0.14) application has user profiles where users can choose whether they want to receive HTML formatted emails. To keep things DRY, I would like to only setup one set of templates for all ...
1
vote
1answer
52 views

Passing markup into a Rails Partial

Is there any way of doing something equivilant to this: <%= render partial: 'shared/outer' do %> <%= render partial: 'shared/inner' %> <% end %> Resulting in <div ...
1
vote
2answers
84 views

Need help understanding this error - SyntaxError in Pages#show

Getting an error when working in my local environment, but exact same code pushed to Heroku worked just fine. Any ideas? Here is what is shown when I try and go to any page in the local environment ...
0
votes
0answers
27 views

Rails 3 templating fields

I have a template for a text field as follows: <div class="ui-field-wrap clearfix"> <div class="ui-field-label"> <%= f.label field %> </div> <div ...
0
votes
1answer
35 views

Changing app layout per page

I have the following type of page setup: Header - Consistent Left side - contains <%= yield %> Right side - ul that contains mostly static menu So, what I would like to do is a) add a class to ...
0
votes
1answer
133 views

Rails+Backbone.js - dynamical loading templates for mustache

Hi Please anyone tell me how to load a mustache template from other file into my backbone script? I'd tried a Ajax but he loads it to me too late and view is already prepared... Anyway... how to ...
0
votes
1answer
81 views

Could not find gem 'ffi' when run simple rails template

I'm getting error when try run my recept: and run following commands: $> rails _3.2.8_ new demo_app -T $> cd demo_app $> rake rails:template ...
0
votes
1answer
58 views

rendering a different template in rails

i've a view with a <%= render :partial => @list.items%> To show the this command called the _item.html.erb. Right? <div class="well"> <%= image_tag item.photo.url(:small) ...
0
votes
1answer
502 views

Organizing nested templates in Backbone.js

Currently transitioning a Rails 3.2+ app over to using Backbone.js to manage its front-end. Pre-transition, the app has several layout partials rendered within application.html.erb. To visualize, ...
0
votes
1answer
37 views

Rails spec: Template error

I'm trying to create an Order model for receiving orders, based on Michael Hartl's User model in his tutorial. I've created a basic Order page and Confirmation page, both in the Orders directory in ...
0
votes
0answers
152 views

Rails 3.2 Missing Template while rendering

I'm attempting to generate an odt file using the code in this link. Now, this is Rails 2 code, so I get a missing template error which appears to actually reflect the fact that sending in handler ...
0
votes
2answers
467 views

Themes in Rails app

I would like to make a Rails app that lets users enter data and then allow them to change the page's theme. This way their data could be styled differently based on the theme they choose. How would I ...
0
votes
0answers
86 views

RoutingError and no controller or action details given

I have a separate class which organises all aspects of creating accounts based on prerequisite data (i.e. if the user already exists, rather than create a user, instead add this data to that user ...
0
votes
2answers
72 views

Is there such as things as HTML Template API?

Is there such a thing as a HTML template API I can use in a rails application? I'm currently creating a blog project application and would like users to use already customised html templates. Does ...
1
vote
4answers
114 views

Rails - how to render my own action?

I am building simple shopping cart. This is the route, where is are the data: match 'kosik/osobni-udaje' => 'home#cart_personal_data', :as => :cart_personal_data And in this partial is form ...
10
votes
10answers
309 views

Putting presentation logic in controller is a good practice in Ruby?

Some recommendation [1] suggest you to use <%= current_user.welcome_message %> instead of <% if current_user.admin? %> <%= current_user.admin_welcome_message %> <% else ...
0
votes
1answer
132 views

Rails - MissingTemplate occurred in controller#action

I have following scheme: click on this link = link_to 'Ping', {:controller => 'articles', :action => 'info_form', :to_article => @article.id} go to ArticlesController def info_form ...
1
vote
1answer
507 views

Missing template - rails

Here is the structure of the views in my project app | - views | admin | sidebar.html.erb | layouts | ...
1
vote
1answer
109 views

User customizable template engine with rails

I wanna create an application which will allow users to customize their layout or to develop their own template and install just like how Wordpress does. I wanna achieve this with Rails! Is this a ...
1
vote
1answer
204 views

Using a layout other than application.html.erb in ruby on rails application?

How could I create and use a new template instead of application.html.erb in a RoR application? What are the setting that I need to change to have another template?
1
vote
1answer
71 views

Rails: how do I use a template from somewhere other than the file system?

I have an application that needs to support a small set of trusted users uploading new templates. I'll store them in the database or in S3. My question is: how do I tell the controller to render a ...
0
votes
1answer
124 views

Render action in two different controllers

I have a list of StockMovements and an ajax picking list of stock_movements. My application has a ajax search with will_paginate and elasticsearch. To add list to picking list I put the following ...

1 2 3 4