-
-
Save ka8725/1783228 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h3 class="title-text title-text-top0">Добавить отзыв</h3> | |
<%= form_for [@page, @comment] do |f| %> | |
<div class="row-form1 clear"> | |
<div class="col-1 fleft"> | |
<div class="row-form1 clear"> | |
<div class="row-form1-left fleft">Имя:</div> | |
<div class="row-form1-right fleft"><%= f.text_field :user_name %></div> | |
</div> | |
</div> | |
<div class="col-2 fleft"> | |
<div class="row-form1 clear"> | |
<div class="row-form1-left fleft">Email:</div> | |
<div class="row-form1-right fleft"><%= f.text_field :email %></div> | |
</div> | |
</div> | |
</div> | |
<div class="row-form1 clear"> | |
<div class="row-form1-left fleft">Отзыв:</div> | |
<div class="row-form1-right fleft"><%= f.text_area :description,:rows => 2,:cols => 2 %></textarea></div> | |
</div> | |
<div class="row-form1 clear"> | |
<div class="row-form1-left fleft">Рейтинг:</div> | |
<div class="row-form1-right fleft"><span class="bg-star"><span><a href="#"></a><a href="#"></a><a href="#"></a><a href="#"></a></span><a href="#"></a></span></div> | |
</div> | |
Rating: <span id="stars-cap"></span> | |
<div id="stars-wrapper2"> | |
<%= f.radio_button :rate, 1, :name => "newrate"%> | |
<%= f.radio_button :rate, 2, :name => "newrate"%> | |
<%= f.radio_button :rate, 3, :name => "newrate" %> | |
<%= f.radio_button :rate, 4, :name => "newrate" %> | |
<%= f.radio_button :rate, 5, :name => "newrate" %> | |
</div> | |
<%= f.submit "send", :class => "button-submit1", :value => " ".html_safe %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment