2022-08-19 23:11:20 -04:00
|
|
|
% layout 'main';
|
2022-08-24 00:35:35 -04:00
|
|
|
% title 'New Remark';
|
2022-08-19 23:11:20 -04:00
|
|
|
<h2><%= title %></h2>
|
2022-08-24 00:35:35 -04:00
|
|
|
<form method="post">
|
2022-09-17 03:56:07 -04:00
|
|
|
<div class="author field">
|
|
|
|
<%= label_for author => 'Author' %>
|
2022-09-20 13:45:37 -04:00
|
|
|
<% if (my $previous_author = session->{'author'}) { =%>
|
2022-09-17 03:56:07 -04:00
|
|
|
<%= text_field author => $previous_author, maxlength => 63, minlength => 1 %>
|
2022-09-20 13:45:37 -04:00
|
|
|
<% } else { =%>
|
2022-09-17 03:56:07 -04:00
|
|
|
<%= text_field author => 'Anonymous', maxlength => 63, minlength => 1 %>
|
2022-09-20 13:45:37 -04:00
|
|
|
<% } =%>
|
2022-09-17 03:56:07 -04:00
|
|
|
<% if (my $error = validation->error('author')) { =%>
|
|
|
|
<p class="field-with-error">Invalid author: 1 to 63 characters please.</p>
|
2022-08-24 00:35:35 -04:00
|
|
|
<% } =%>
|
|
|
|
</div>
|
|
|
|
<div class="text field">
|
|
|
|
<%= label_for post => 'Text' %>
|
|
|
|
<%= text_area 'post', (
|
|
|
|
maxlength => 4000,
|
|
|
|
minlength => 2,
|
|
|
|
required => 'true',
|
|
|
|
rows => 6
|
|
|
|
) %>
|
|
|
|
<% if (my $error = validation->error('post')) { =%>
|
|
|
|
<p class="field-with-error">Invalid post: Up to 4,000 characters only.</p>
|
|
|
|
<% } =%>
|
|
|
|
</div>
|
|
|
|
<%= submit_button 'Post', class => 'post button' %>
|
|
|
|
</form>
|
2022-09-02 18:11:23 -04:00
|
|
|
<div class="threads">
|
|
|
|
<h3>Thread</h3>
|
|
|
|
<article class="thread">
|
|
|
|
<span class="id">
|
|
|
|
<%= link_to "#$thread->{'id'}",
|
2022-09-02 22:45:41 -04:00
|
|
|
thread_page => {thread_id => $thread->{'id'}} %>
|
2022-09-02 18:11:23 -04:00
|
|
|
</span>
|
2022-09-20 21:16:42 -04:00
|
|
|
<h3 class="title"><%= $thread->{'title'} %></h3>
|
|
|
|
<h4 class="date"><%= $thread->{'date'} %></h4>
|
|
|
|
<h5 class="author"><%= $thread->{'author'} %></h5>
|
|
|
|
<p class="body"><%= $thread->{'body'} %></p>
|
2022-09-02 18:11:23 -04:00
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
<% if (my $last_remark_id = $last_remark->{'id'}) { =%>
|
|
|
|
<div class="remarks">
|
|
|
|
<h3>Last Remark</h3>
|
|
|
|
<article class="remark">
|
|
|
|
<span class="id">#<%= $last_remark_id %></span>
|
|
|
|
<h4 class="date"><%= $last_remark->{'date'} %></h4>
|
|
|
|
<h5 class="author"><%= $last_remark->{'author'} %></h5>
|
|
|
|
<p class="body"><%= $last_remark->{'body'} %></p>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
<% } =%>
|