2022-11-28 23:22:25 -05:00
|
|
|
% layout 'default';
|
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-27 13:20:30 -04:00
|
|
|
<%= text_field author => session->{'author'}, (
|
|
|
|
maxlength => 63,
|
|
|
|
minlength => 1
|
|
|
|
) %>
|
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">
|
2022-09-21 00:12:16 -04:00
|
|
|
<%= label_for body => 'Text' %>
|
|
|
|
<%= text_area body => (
|
2022-08-24 00:35:35 -04:00
|
|
|
maxlength => 4000,
|
|
|
|
minlength => 2,
|
|
|
|
required => 'true',
|
2022-09-21 01:28:50 -04:00
|
|
|
rows => 6,
|
|
|
|
autofocus => 'autofocus'
|
2022-08-24 00:35:35 -04:00
|
|
|
) %>
|
2022-09-21 00:12:16 -04:00
|
|
|
<% if (my $error = validation->error('body')) { =%>
|
|
|
|
<p class="field-with-error">Invalid text: Up to 4,000 characters only.</p>
|
2022-08-24 00:35:35 -04:00
|
|
|
<% } =%>
|
|
|
|
</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">
|
2022-09-21 01:28:50 -04:00
|
|
|
<nav class="id">
|
2022-09-02 18:11:23 -04:00
|
|
|
<%= link_to "#$thread->{'id'}",
|
2022-10-01 18:00:23 -04:00
|
|
|
single_thread => {thread_id => $thread->{'id'}} %>
|
2022-09-21 01:28:50 -04:00
|
|
|
</nav>
|
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>
|
2023-04-25 11:56:42 -04:00
|
|
|
<div class="body"><%== markdown $thread->{'body'} %></div>
|
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">
|
2023-04-24 23:00:09 -04:00
|
|
|
<nav class="id">
|
|
|
|
<%= link_to "#$last_remark_id",
|
|
|
|
single_remark => {remark_id => $last_remark_id} %>
|
|
|
|
</nav>
|
2022-09-02 18:11:23 -04:00
|
|
|
<h4 class="date"><%= $last_remark->{'date'} %></h4>
|
|
|
|
<h5 class="author"><%= $last_remark->{'author'} %></h5>
|
2023-04-25 11:56:42 -04:00
|
|
|
<div class="body"><%== markdown $last_remark->{'body'} %></div>
|
2022-09-02 18:11:23 -04:00
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
<% } =%>
|