Sha256: d29fc118e9299188d31fb55fc1c420751b321fb6693079b9a05560aa9c174f1f
Contents?: true
Size: 856 Bytes
Versions: 6
Compression:
Stored size: 856 Bytes
Contents
<%= error_messages_for 'comment' %> <ul class="set admin" id="comment"> <li> <label for="comment_author" class="block content"><%= _("Author")%></label> <%= text_field 'comment', 'author', "value" => (current_user.name if controller.action_name == "list") %> </li> <li> <label for="comment_url" class="block content"><%= _("Url") %></label> <%= text_field 'comment', 'url', "value" => (this_blog.base_url if controller.action_name == "list") %> </li> <li> <label for="comment_email" class="block content"><%= _("Email")%></label> <%= text_field 'comment', 'email', "value" => (current_user.email if controller.action_name == "list") %> </li> <li> <label for="comment_body" class="block content"><%= _("Content")%></label> <%= text_area 'comment', 'body', { :height => '300', :cols => '100'} %> </li> </ul>
Version data entries
6 entries across 6 versions & 1 rubygems