2018-12-07 11:05:01 +00:00
|
|
|
@use plume_models::medias::{Media, MediaCategory};
|
2018-12-06 17:54:16 +00:00
|
|
|
@use templates::base;
|
|
|
|
@use template_utils::*;
|
2018-12-07 11:05:01 +00:00
|
|
|
@use routes::*;
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
@(ctx: BaseContext, media: Media)
|
|
|
|
|
|
|
|
@:base(ctx, "Media details", {}, {}, {
|
|
|
|
<h1>@i18n!(ctx.1, "Media details")</h1>
|
|
|
|
<section>
|
2018-12-07 11:05:01 +00:00
|
|
|
<a href="@uri!(medias::list)">@i18n!(ctx.1, "Go back to the gallery")</a>
|
2018-12-06 17:54:16 +00:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<figure class="media">
|
|
|
|
@Html(media.html(ctx.0))
|
|
|
|
<figcaption>@media.alt_text</figcaption>
|
|
|
|
</figure>
|
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
@i18n!(ctx.1, "Markdown code")
|
|
|
|
<small>@i18n!(ctx.1, "Copy it in your articles to insert this media.")</small>
|
|
|
|
</p>
|
|
|
|
<code>@media.markdown(ctx.0)</code>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
@if media.category() == MediaCategory::Image {
|
2018-12-07 11:05:01 +00:00
|
|
|
<form class="inline" method="post" action="@uri!(medias::set_avatar: id = media.id)">
|
2018-12-06 17:54:16 +00:00
|
|
|
<input class="button" type="submit" value="@i18n!(ctx.1, "Use as avatar")">
|
|
|
|
</form>
|
|
|
|
}
|
2018-12-07 11:05:01 +00:00
|
|
|
<form class="inline" method="post" action="@uri!(medias::delete: id = media.id)">
|
2018-12-06 17:54:16 +00:00
|
|
|
<input class="button" type="submit" value="@i18n!(ctx.1, "Delete")">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
})
|