% layout 'default'; % title 'New Remark';

<%= title %>

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

Invalid author: 1 to 63 characters please.

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

Invalid text: Up to 4,000 characters only.

<% } =%>

Thread

<%= link_to single_thread => {thread_id => $thread->{'id'}}, begin %> <%= $thread->{'title'} %> <% end %> <%= link_to "#$thread->{'id'}", single_thread => {thread_id => $thread->{'id'}} %>

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

Last Remark

<%= link_to $last_remark->{'date'}, single_remark => {remark_id => $last_remark_id} %> <%= link_to "#$last_remark_id", single_remark => {remark_id => $last_remark_id}, (class => 'post__id') %>

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