simpkey/src/views/renote.pug

11 lines
316 B
Plaintext
Raw Normal View History

2020-07-23 20:53:44 +02:00
extends _base
block content
2020-07-24 06:58:36 +02:00
if canRenote
2022-11-17 21:25:19 +01:00
h2 Want to renote this note?
2020-07-24 06:58:36 +02:00
+sub-note(note)
2022-11-17 21:25:19 +01:00
+post-form('/action/create-note', "Comment (optional)", "Renote")
2020-07-24 06:58:36 +02:00
input(type="hidden", name="renoteId", value=note.id)
else
2022-11-17 21:25:19 +01:00
h2 This note can't be renoted
2020-07-24 06:58:36 +02:00
+sub-note(note)