@use templates::base; @use template_utils::*; @use validator::{ValidationErrors, ValidationErrorsKind}; @use std::borrow::Cow; @use plume_models::medias::*; @use plume_models::blogs::Blog; @use plume_models::posts::Post; @use routes::posts::NewPostForm; @use routes::*; @(ctx: BaseContext, title: String, blog: Blog, editing: bool, form: &NewPostForm, is_draft: bool, article: Option, errors: ValidationErrors, medias: Vec, content_len: u64) @:base(ctx, title.clone(), {}, {}, {

@title

@if let Some(article) = article {
} else { } @input!(ctx.1, title (text), "Title", form, errors.clone(), "required") @input!(ctx.1, subtitle (optional text), "Subtitle", form, errors.clone(), "") @if let Some(ValidationErrorsKind::Field(errs)) = errors.clone().errors().get("content") { @format!(r#"

{}

"#, errs[0].message.clone().unwrap_or(Cow::from("Unknown error"))) } @content_len

@i18n!(ctx.1, "You can upload medias to your gallery, and copy their Markdown code in your articles to insert them.") @i18n!(ctx.1, "Upload media")

@input!(ctx.1, tags (optional text), "Tags, separated by commas", form, errors.clone(), "") @input!(ctx.1, license (optional text), "License", "Leave it empty to reserve all rights", form, errors, "") @if is_draft { } @if editing { } else { @if is_draft { } else { } }
})