PostText/templates/remark/create.html.ep

72 lines
2.1 KiB
Plaintext
Raw Normal View History

% layout 'default';
2022-08-24 00:35:35 -04:00
% title 'New Remark';
2023-05-20 13:22:29 -04:00
<h2 class="page-title"><%= title %></h2>
<% if (keys %{$thread}) { =%>
2023-05-20 13:22:29 -04:00
<form method="post" class="form-body">
<div class="form-field">
<% if (my $error = validation->error('author')) { =%>
<p class="field-with-error">Must be between <%= $error->[2] %>
and <%= $error->[3] %> characters.</p>
<% } =%>
<%= label_for author => 'Author' %>
<%= text_field author => session->{'author'}, (
id => 'author',
maxlength => 63,
2023-05-09 21:21:58 -04:00
minlength => 1,
required => undef
) %>
2022-08-24 00:35:35 -04:00
</div>
2023-05-20 13:22:29 -04:00
<div class="form-field">
<% if (my $error = validation->error('body')) { =%>
<p class="field-with-error">Must be between <%= $error->[2] %>
and <%= $error->[3] %> characters.</p>
<% } =%>
2022-09-21 00:12:16 -04:00
<%= label_for body => 'Text' %>
<%= text_area body => (
id => 'body',
2022-08-24 00:35:35 -04:00
maxlength => 4000,
minlength => 2,
required => undef,
2022-09-21 01:28:50 -04:00
rows => 6,
autofocus => undef
2022-08-24 00:35:35 -04:00
) %>
</div>
2023-05-20 23:43:32 -04:00
<button type="submit" class="form-button">Post</button>
2022-08-24 00:35:35 -04:00
</form>
2023-05-20 13:22:29 -04:00
<section class="pager">
2023-05-27 12:51:57 -04:00
<h3 class="pager__title">Thread</h3>
2023-05-20 13:22:29 -04:00
<article class="post">
<h3 class="post__title">
<span>
<%= $thread->{'title'} %>
</span>
<%= link_to "#$thread->{'id'}", single_thread =>
{thread_id => $thread->{'id'}}, (class => 'post__id') %>
</h3>
2023-05-20 13:22:29 -04: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 18:11:23 -04:00
</article>
</section>
<% } =%>
<% if (keys %{$last_remark}) { =%>
2023-05-20 13:22:29 -04:00
<section class="pager">
2023-05-27 12:51:57 -04:00
<h3 class="pager__title">Last Remark</h3>
2023-05-20 13:22:29 -04:00
<article class="post">
2023-05-21 11:46:29 -04:00
<h4 class="post__title">
<span>
<%= $last_remark->{'date'} %>
</span>
<%= link_to "#$last_remark->{'id'}", single_remark =>
{remark_id => $last_remark->{'id'}}, (class => 'post__id') %>
</h4>
2023-05-20 13:22:29 -04:00
<h5 class="post__author"><%= $last_remark->{'author'} %></h5>
<div class="post__body">
<%== markdown $last_remark->{'body'} =%>
</div>
2022-09-02 18:11:23 -04:00
</article>
</section>
2022-09-02 18:11:23 -04:00
<% } =%>