mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-06 07:31:04 -05:00
* Ruby 3.2/Bundler 2.4 * Fix creation * Upgrade to js-routes 2. Put all js routes into a global namespace. * Remove js-routes * Remove * Adjust ownership * Appease codeclimate for the nth time * Fix deprecation warning by explicitly calling to_fs * Fix deprecation warning by explicitly calling to_fs * Fix deprecation warning by explicitly calling to_fs * Swap to will paginate successor for bootstrap * Update app/views/members/show.html.haml * Update app/views/plantings/index.rss.haml * Update .env * Update .devcontainer/.env * Fix spec * Update spec * Fix spec * Pin to 2.4.22 * 3 space indent * Regenerate * Update rubocop
20 lines
417 B
Plaintext
20 lines
417 B
Plaintext
%p
|
|
Posted by
|
|
- if @post.author
|
|
= link_to @post.author.login_name, member_path(@post.author)
|
|
- else
|
|
Member Deleted
|
|
- if @post.forum
|
|
in
|
|
= link_to @post.forum, @post.forum
|
|
on
|
|
= @post.created_at.to_fs(:default)
|
|
- if @post.updated_at > @post.created_at
|
|
and edited at
|
|
= @post.updated_at.to_fs(:default)
|
|
|
|
= link_to "Permalink", post
|
|
|
|
:markdown
|
|
#{ strip_tags markdownify(@post.body) }
|