2019-01-27 09:55:22 +00:00
|
|
|
@use templates::errors::base;
|
|
|
|
@use template_utils::*;
|
|
|
|
|
|
|
|
@(ctx: BaseContext)
|
|
|
|
|
2019-02-02 14:23:50 +00:00
|
|
|
@:base(ctx, "Unprocessable entity".to_string(), {
|
2019-01-27 09:55:22 +00:00
|
|
|
<h1>@i18n!(ctx.1, "The content you sent can't be processed.")</h1>
|
|
|
|
<p>@i18n!(ctx.1, "Maybe it was too long.")</p>
|
|
|
|
})
|
|
|
|
|