% layout 'main'; % title 'New Remark';

<%= title %>

<%= label_for author => 'Author' %> <% if (my $previous_author = session->{'author'}) { =%> <%= text_field author => $previous_author, maxlength => 63, minlength => 1 %> <% } else { =%> <%= text_field author => 'Anonymous', maxlength => 63, minlength => 1 %> <% } =%> <% if (my $error = validation->error('author')) { =%>

Invalid author: 1 to 63 characters please.

<% } =%>
<%= label_for post => 'Text' %> <%= text_area 'post', ( maxlength => 4000, minlength => 2, required => 'true', rows => 6 ) %> <% if (my $error = validation->error('post')) { =%>

Invalid post: Up to 4,000 characters only.

<% } =%>
<%= submit_button 'Post', class => 'post button' %>

Thread

<%= link_to "#$thread->{'id'}", thread_page => {thread_id => $thread->{'id'}} %>

<%= %$thread{'title'} %>

<%= %$thread{'date'} %>

<%= %$thread{'author'} %>

<%= %$thread{'body'} %>

<% if (my $last_remark_id = $last_remark->{'id'}) { =%>

Last Remark

#<%= $last_remark_id %>

<%= $last_remark->{'date'} %>

<%= $last_remark->{'author'} %>

<%= $last_remark->{'body'} %>

<% } =%>