PostText/templates/remark/create.html.ep

67 lines
1.9 KiB
Plaintext
Raw Normal View History

% 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">
<div class="author field">
<%= label_for author => 'Author' %>
<%= text_field author => session->{'author'}, (
maxlength => 63,
minlength => 1
) %>
<% 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>
<section class="threads">
2022-09-02 18:11:23 -04:00
<h3>Thread</h3>
<article class="thread">
<h3 class="title">
<%= link_to single_thread => {thread_id => $thread->{'id'}}, begin %>
<%= $thread->{'title'} %>
<% end %>
<span class="id">
<%= link_to "#$thread->{'id'}",
2022-10-01 18:00:23 -04:00
single_thread => {thread_id => $thread->{'id'}} %>
</span>
</h3>
2022-09-20 21:16:42 -04:00
<h4 class="date"><%= $thread->{'date'} %></h4>
<h5 class="author"><%= $thread->{'author'} %></h5>
<div class="body">
<%== markdown $thread->{'body'} =%>
</div>
2022-09-02 18:11:23 -04:00
</article>
</section>
2022-09-02 18:11:23 -04:00
<% if (my $last_remark_id = $last_remark->{'id'}) { =%>
<section class="remarks">
2022-09-02 18:11:23 -04:00
<h3>Last Remark</h3>
<article class="remark">
<h4 class="date">
<%= $last_remark->{'date'} %>
<span class="id">
<%= link_to "#$last_remark_id",
single_remark => {remark_id => $last_remark_id} %>
</span>
</h4>
2022-09-02 18:11:23 -04:00
<h5 class="author"><%= $last_remark->{'author'} %></h5>
<div class="body">
<%== markdown $last_remark->{'body'} =%>
</div>
2022-09-02 18:11:23 -04:00
</article>
</section>
2022-09-02 18:11:23 -04:00
<% } =%>