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