PostText/templates/remark/create.html.ep

69 lines
2.2 KiB
Plaintext
Raw Normal View History

% layout 'default';
2022-08-24 04:35:35 +00:00
% title 'New Remark';
2023-05-20 17:22:29 +00:00
<h2 class="page-title"><%= title %></h2>
<form method="post" class="form-body">
<div class="form-field">
<%= label_for author => 'Author' %>
<%= text_field author => session->{'author'}, (
id => 'author',
maxlength => 63,
2023-05-10 01:21:58 +00:00
minlength => 1,
required => undef
) %>
<% if (my $error = validation->error('author')) { =%>
<p class="field-with-error">Invalid author: 1 to 63 characters please.</p>
2022-08-24 04:35:35 +00:00
<% } =%>
</div>
2023-05-20 17:22:29 +00:00
<div class="form-field">
2022-09-21 04:12:16 +00:00
<%= label_for body => 'Text' %>
<%= text_area body => (
id => 'body',
2022-08-24 04:35:35 +00:00
maxlength => 4000,
minlength => 2,
required => undef,
2022-09-21 05:28:50 +00:00
rows => 6,
autofocus => undef
2022-08-24 04:35:35 +00:00
) %>
2022-09-21 04:12:16 +00:00
<% if (my $error = validation->error('body')) { =%>
<p class="field-with-error">Invalid text: Up to 4,000 characters only.</p>
2022-08-24 04:35:35 +00:00
<% } =%>
</div>
2023-05-21 03:43:32 +00:00
<button type="submit" class="form-button">Post</button>
2022-08-24 04:35:35 +00:00
</form>
2023-05-20 17:22:29 +00:00
<section class="pager">
<h3 class="page-title">Thread</h3>
<article class="post">
<h3 class="post__title">
<%= link_to single_thread => {thread_id => $thread->{'id'}}, begin %>
<%= $thread->{'title'} %>
<% end %>
2023-05-20 17:22:29 +00:00
<span class="post__id">
<%= link_to "#$thread->{'id'}",
2022-10-01 22:00:23 +00:00
single_thread => {thread_id => $thread->{'id'}} %>
</span>
</h3>
2023-05-20 17:22:29 +00:00
<h4 class="post__date"><%= $thread->{'date'} %></h4>
<h5 class="post__author"><%= $thread->{'author'} %></h5>
<div class="post__body">
<%== markdown $thread->{'body'} =%>
</div>
2022-09-02 22:11:23 +00:00
</article>
</section>
2022-09-02 22:11:23 +00:00
<% if (my $last_remark_id = $last_remark->{'id'}) { =%>
2023-05-20 17:22:29 +00:00
<section class="pager">
<h3 class="page-title">Last Remark</h3>
<article class="post">
2023-05-21 15:46:29 +00:00
<h4 class="post__title">
2023-05-21 02:53:32 +00:00
<%= 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') %>
</h4>
2023-05-20 17:22:29 +00:00
<h5 class="post__author"><%= $last_remark->{'author'} %></h5>
<div class="post__body">
<%== markdown $last_remark->{'body'} =%>
</div>
2022-09-02 22:11:23 +00:00
</article>
</section>
2022-09-02 22:11:23 +00:00
<% } =%>