HAML is a markup language that’s used to cleanly and simply describe the HTML of any web document without the use of inline code. It can be used as a standalone HTML generation tool or as a template rendering engine in a web framework such as Ruby on Rails or Ramaze.

learn more… | top users | synonyms

1
vote
2answers
37 views

Rails 3.0 undefined local variable when rendering a partial

I'm working with a Rails 3.0.20 app and I'm trying to pass a local variable through a partial and it's displaying 'undefined local variable' I've had a look at the other posts on this issue and ...
0
votes
0answers
25 views

Rails doesnt log tempalte errors in development mode

My Rails 3.2.9-app does not show any specific error information to me on errors in templates! It doesn't matter if I use haml or erb, I am always getting "We're sorry, but something went wrong". In ...
1
vote
1answer
38 views

Rails HAML div as link -> not getting it worked

I try to make a complete DIV as a link, but it is just working. This is what I have: = link_to (user_orders_path(current_user)) do .current_orders.box.tile.one_third.lightblue .count ...
2
votes
1answer
35 views

multiline code block in markdown adds unwanted tabs

today I'm implementing my page in nanoc (haml templates) and I wanted to write some posts in markdown, but when it goes to multiline code blocks something weird is happening - second line in code ...
1
vote
1answer
38 views

Executing JavaScript in a Haml form using Rails

I am trying to use jquery.datetimeentry and I am a newbie having trouble with the javascript. if I put: $(function () { $.datetimeEntry.setDefaults({spinnerImage: 'spinnerDefault.png'}); ...
3
votes
2answers
41 views

Unescaping HAML in an Attribute Hash

I have a problem similar to some I've found on stackoverflow, but not quite the same. I'd like to avoid the solution to the following question: http://stackoverflow.com/a/10407782/996587 Basically, ...
-2
votes
2answers
37 views

Comment model form not working [closed]

i'm learning Rails by doing social app called bloggers. I have problem with my comment model. Comment model is associated with models: post and user. comments controller: class CommentsController ...
1
vote
2answers
39 views

Rails: submit form with nested attributes throws 'couldn't find entity with id=xxx'

I got the following model classes: class Movie < ActiveRecord::Base has_and_belongs_to_many :actors accepts_nested_attributes_for :actors, :allow_destroy => true ... end and class ...
-1
votes
0answers
20 views

Sass only converting to .sass, not .scss using prompt sass-convert [closed]

So I'm on Windows and working from standard cmd prompt, though the issue seems like it would be applicable to any POSIX prompt as well. The language for either with sass is identical. So the ...
-1
votes
0answers
16 views

Haml javascript editor for text area in rails app [closed]

Are there any good solutions for rails apps, like JCE for joomla etc... ? I need to add editing tools to my text area, but main trouble is that all of them work only with simple and pure html but ...
0
votes
1answer
29 views

Multiple input field for multiple forms for multiple users

I am trying to create a small accounting system. Here I have some products. Each month I want to write down how many of each product each user bought. Lets say I have 3 users and 4 products. I want a ...
0
votes
1answer
45 views

pass variables to controll and save to database

I'm able to pass the variables to the controller but I think my method is incorrect. I have Referrals where a reply can be applied to a referral, in the routes I have nested the replies inside ...
1
vote
2answers
44 views

HAML putting a partial inside previous div

I'm using a layout for the landing area of my site, and on that I'm using the devise_controller? method to add #login & .span.offset4 that tell the Devise views to move to the middle and set a ...
0
votes
3answers
22 views

How do I set the ID in a link_to tag in haml?

I've tried = link_to 'foo', :action => 'bar', :id => 'foobar' But ID only seems to modify the href, resulting in <a href="controller/foobar/bar">foo</a> How do I set the ID ...
0
votes
1answer
44 views

Yeoman watching HAML files, but not compiling

When using grunt-contrib-haml, I can get Grunt to watch for HAML changes, but nothing is generated to HTML. What do I need to add to Gruntfile.js file to get this to occur?
0
votes
1answer
32 views

ng-show is not working within HAML template on Internet Explorer 7

I have the following minimum failure case: %span.add-on - if planned_date.blank? %i.icon-calendar - else if successful %i.icon-calendar.foo ...
0
votes
3answers
46 views

How to disable Checkbox unless one checkbox is clicked

i have two check boxes, when one check box is clicked then the other one must be enable otherwise it should be disabled (both check box and text) HAML code: %label.checkbox = check_box_tag ...
-1
votes
0answers
16 views

how can I get the result of a post submit using ajax with haml for ruby?

Ive done a little form that submits some information, and depends of it returns true or false, the problem is that I dont know how to how to read that information that is given back... there is any ...
0
votes
1answer
37 views

radio button counter in database

Ruby on Rails beginner here. extremely simple question.I have a form with 4 radio buttons. a,b,c,d. everytime a user selects one of the four options and hits submit,i want the value incremented by 1 ...
0
votes
1answer
60 views

create a button that pulls a table id and user id

I have a page that has a list of referrals on it. I have a button on each of the referrals that is set to reply to the referral. I don't need any pop up or form to show except for a flash message to ...
0
votes
1answer
26 views

HAML Form For Rails

I'm currently trying to convert an ERB layout to HAML. This is the error I keep receiving: index.html.haml:18: syntax error, unexpected ')' ));}\n #{_hamlout.format_... Here is the HAML ...
0
votes
0answers
24 views

Haml nesting with rendered partial in Rails

Consider a partial.haml like this: - haml_tag :body, {:id => @instance_var} What I'm trying to do is to nest haml content under a rendered partial. Something like: = render 'partial_file' do ...
0
votes
4answers
35 views

how can I enable my form to use ajax in ruby on rails using haml?

I am trying to create a form to send data via ajax and order to update a user (I used scaffolds, so the methods for update already exist). I created my form and I did something like this %form{ ...
0
votes
1answer
35 views

Issue mixing jquery, rails, and haml

I'm converting an html.erb into html.haml. I have some jquery in an erb which is.. :javascript $(".level").live("click", function() { //..some code <% if @milestone %> milestone ...
0
votes
2answers
28 views

Inline conditional statement using haml css

How do you write inline if else in haml/css? Here is my working code: - if unit > 10 = value - else .unit = value I tried to make it inline like the below, but that doesnt work: ...
0
votes
2answers
48 views

how can I specify controller and method in a link using haml with rails?

I am new in ralis, and I am trying to create a link in what calls an specific method of a specific controller, in this case car and method add_to_cart sending a parameters, unfortunately I dont know ...
0
votes
1answer
34 views

Render haml with locals and partials within partials to html file

I need to create some html files and want to use my partials already done to the show view. I used to do this with markaby, but now i think that with haml the thing will be easier. I'm trying to do: ...
0
votes
1answer
40 views

Why does Ruby on Rails Create Unformatted HTML Code?

I'm working on a ruby on rails app and i noticed that the HTML output isn't formatted, it's just flat. I'm using HAML and running Rails 4.0.0rc1, this also happened on 3.2.x and I am using Heroku and ...
-2
votes
1answer
45 views

Sinatra/Ruby new to programming - increasing an integer if a radio button is selected

I am very new to this and I am trying to do something pretty simple but I am not sure where to begin. I simply need to increase the "vote" count of a newly posted link from 0 to 10 if a radio button ...
0
votes
1answer
25 views

In this Rails app view loop, how can I include CSS button styling?

I want the "complete" below to have a fake button styling, basically a border and a colored interior. What would be the best way to do this? I tried to suffix class: 'btn btn-mini' but that doesn't ...
0
votes
1answer
68 views

jQuery stepper doesn't trigger the change function

I want to toggle the visibility of the submit button on change of input fields. Since the HTML5 input type="number" is not supported in firefox, I use the stepper jQuery plugin. The submit button ...
0
votes
0answers
33 views

replaceWith is not working but append works

this is my html .advise-needed .replace-advise-needed %h2 Advice there is a form which I submit and on successful ajax submission the form should change the value this is my jquery ...
0
votes
0answers
49 views

Will Paginate Button Modify with CSS

I am using the will_paginate gem. I want to modify my Button(i.e next, previous, page_links). I have successfully modified the 'next' and 'previous' buttons and their CSS. However, I getting a problem ...
0
votes
1answer
31 views

Short way to include CSS and javascript tags with HAML

When including javascript or CSS in HAML you would normally have to do the following to include CSS: %link{:type => "text/css", :rel => "stylesheet", :href => "/css/mycss.css"} And for ...
0
votes
1answer
32 views

Basics of Haml-Coffee for Backbone tempting

I'm looking into Haml-Coffee and am a little confused about how to get it working. The github's information didn't seem very clear. Can anyone layout a basic use of it with Backbone for tempting.
0
votes
0answers
23 views

Multi update boolean state with checkboxes (Rails 3)

well this problem I'm sure it isn't difficult at all but being new to rails I'm kinda lost. After watching Railscasts Episode #52, I went on to make my own publish/unpublish list of slides. So this ...
0
votes
1answer
41 views

After installing vim-rails plugin I got problems with HAML indentation

I've installed vim-rails plugin from Tim Pope. Everything goes well except that I can't run my Rails project into the browser due to a HAML Syntax Error which is is Inconsistent indentation: 6 ...
0
votes
2answers
33 views

div title syntax in haml and also incorporate ruby variable inside it

I have trouble converting HTML syntax into HAML. I know a <div> class can be simply represented by: .class-name But, I want to convert the following syntax into HAML and also incorporate a ...
1
vote
1answer
20 views

Why use 'succeed do' in haml?

I used html2haml.heroku.com and it turned some ordinary strings into the following: A normal sentence is here = succeed '.' do %strong and it is cut off randomly by this succeed Where the succeed ...
1
vote
2answers
40 views

Can I convert this ERB to HAML? [closed]

Is it possible convert the ERB code below to HAML? ERB <div class="users">      <div class="row">    <% i = 0 %>    <% @users.each do |user| %>      <span><%= ...
0
votes
0answers
25 views

Having touble creating HAML Templates using Gurad and Guard-HAML

I am trying use guard-haml but for the life of me I can't seem to get the templating to work. This is how I am setting up guard-HAML in guardfile: group :development do ## HAML guard 'haml', ...
0
votes
1answer
43 views

Ruby interpolation in haml

I've got following code in erb which works fine: <div id='flash_<%= flash.keys.first.to_s %>'> <%=h flash[flash.keys.first] %> </div> I want to convert it into haml: ...
1
vote
0answers
39 views

HAML text formatting in SublimeText2

"Edit, Line, Reindent" doesn't work for HAML. Is there a command that will auto-format HAML? Any ideas? thanks
1
vote
4answers
55 views

Use picture as submit button

I would like to make my submit button for my login page be a picture instead of the grey button. When I use css to do this I get the button on top of the picture. Is there a way to use = submit_tag ...
1
vote
1answer
62 views

“NameError: uninitialized constant Guard::Haml::Bundler”

On my OSX system, I'm trying to use Guard-Haml to auto compile my HAML down to HTML. However, when guard is running, and tries to compile, I get the error below, in fig.1. I've installed Bunder and ...
0
votes
0answers
23 views

How do I write out from a variable in haml?

I was trying to render a simple page with haml in http://c9.io however the variable replacement seemed to only work as content so I slid over to http://tinkerbin.com/ and if the set variable syntax ...
0
votes
3answers
36 views

Please, help me buil table using HAML

I trying buld the table. Here is my HAML code: %table{:border => 1} %tbody %tr %td Question: - @cust_dashboard.each do |object| %tr %td= object.question %tr %td Status: - ...
2
votes
2answers
62 views

Rails NoMethodError for user but db:migrate isn't helping -updated

I am new to rails and I am trying to add a email confirmation upon register. I currently get this error. I tried rake db:migrate but for some reason I cannot get email_activation_token into the user ...
0
votes
1answer
39 views

How go to controller action correctly, using haml form?

When I go to set_answer action(localhost:3000/staff/set_answer/) from answer action(localhost:3000/staff/answer/) , I get this url: localhost:3000/staff/answer/set_answer but this is wrong URL . How ...
0
votes
1answer
25 views

Change image_tag to button_to

I'm trying to figure out how to change this code: %li.input.optional= link_to_remove_association image_tag('minus.png', {:alt => "#{t('blabla.remove_model', model: ...

1 2 3 4 5 33