2018-12-06 18:54:16 +01:00
|
|
|
@use validator::ValidationErrors;
|
2020-01-21 07:02:03 +01:00
|
|
|
@use crate::templates::base;
|
|
|
|
@use crate::template_utils::*;
|
|
|
|
@use crate::routes::blogs::NewBlogForm;
|
|
|
|
@use crate::routes::*;
|
2018-12-06 18:54:16 +01:00
|
|
|
|
|
|
|
@(ctx: BaseContext, form: &NewBlogForm, errors: ValidationErrors)
|
|
|
|
|
2019-02-02 15:23:50 +01:00
|
|
|
@:base(ctx, i18n!(ctx.1, "New Blog"), {}, {}, {
|
2019-07-11 09:34:27 +02:00
|
|
|
<h1 dir="auto">@i18n!(ctx.1, "Create a blog")</h1>
|
2018-12-07 12:05:01 +01:00
|
|
|
<form method="post" action="@uri!(blogs::create)">
|
2019-08-27 16:50:24 +02:00
|
|
|
@(Input::new("title", i18n!(ctx.1, "Title"))
|
|
|
|
.default(&form.title)
|
|
|
|
.error(&errors)
|
|
|
|
.set_prop("minlength", 1)
|
|
|
|
.html(ctx.1))
|
2019-07-11 09:34:27 +02:00
|
|
|
<input type="submit" value="@i18n!(ctx.1, "Create blog")" dir="auto"/>
|
2018-12-06 18:54:16 +01:00
|
|
|
</form>
|
|
|
|
})
|