mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
d17fb70131
* Change how changes to media attachments are stored for edits Fix not being able to re-order media attachments * Fix not broadcasting updates when polls/media is changed through ActivityPub * Various fixes and improvements * Update app/models/report.rb Co-authored-by: Claire <claire.github-309c@sitedethib.com> * Add tracking of media attachment description changes * Change poll in status edit to have a structure closer to the real one Co-authored-by: Claire <claire.github-309c@sitedethib.com>
46 lines
2.1 KiB
Plaintext
46 lines
2.1 KiB
Plaintext
- i ||= 0
|
|
- highlighted ||= false
|
|
|
|
%table.email-table{ cellspacing: 0, cellpadding: 0, dir: 'ltr' }
|
|
%tbody
|
|
%tr
|
|
%td.email-body
|
|
.email-container
|
|
%table.content-section{ cellspacing: 0, cellpadding: 0 }
|
|
%tbody
|
|
%tr
|
|
%td.content-cell{ class: i.zero? ? 'content-start' : nil }
|
|
.email-row
|
|
.col-6
|
|
%table.column{ cellspacing: 0, cellpadding: 0 }
|
|
%tbody
|
|
%tr
|
|
%td.column-cell.padded.status{ class: highlighted ? 'status--highlighted' : '' }
|
|
%table.status-header{ cellspacing: 0, cellpadding: 0 }
|
|
%tbody
|
|
%tr
|
|
%td{ align: 'left', width: 48 }
|
|
= image_tag full_asset_url(status.account.avatar.url), alt:''
|
|
%td{ align: 'left' }
|
|
%bdi= display_name(status.account)
|
|
= "@#{status.account.acct}"
|
|
|
|
- if status.spoiler_text?
|
|
%div.auto-dir
|
|
%p
|
|
= Formatter.instance.format_spoiler(status)
|
|
|
|
%div.auto-dir
|
|
= Formatter.instance.format(status)
|
|
|
|
- if status.ordered_media_attachments.size > 0
|
|
%p
|
|
- status.ordered_media_attachments.each do |a|
|
|
- if status.local?
|
|
= link_to full_asset_url(a.file.url(:original)), full_asset_url(a.file.url(:original))
|
|
- else
|
|
= link_to a.remote_url, a.remote_url
|
|
|
|
%p.status-footer
|
|
= link_to l(status.created_at), web_url("statuses/#{status.id}")
|