* Replace the input! macro with an Input builder * Use a BTreeMap instead of an HashMap Followinf @fdb-hiroshima's advice * Rename Input::to_html to Input::html To make clippy happy * Wrap error messages in red paragraphs
		
			
				
	
	
		
			20 lines
		
	
	
		
			602 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			602 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| @use validator::ValidationErrors;
 | |
| @use templates::base;
 | |
| @use template_utils::*;
 | |
| @use routes::blogs::NewBlogForm;
 | |
| @use routes::*;
 | |
| 
 | |
| @(ctx: BaseContext, form: &NewBlogForm, errors: ValidationErrors)
 | |
| 
 | |
| @:base(ctx, i18n!(ctx.1, "New Blog"), {}, {}, {
 | |
|   <h1 dir="auto">@i18n!(ctx.1, "Create a blog")</h1>
 | |
|   <form method="post" action="@uri!(blogs::create)">
 | |
|       @(Input::new("title", i18n!(ctx.1, "Title"))
 | |
|       		.default(&form.title)
 | |
|       		.error(&errors)
 | |
|       		.set_prop("minlength", 1)
 | |
|       		.html(ctx.1))
 | |
|       <input type="submit" value="@i18n!(ctx.1, "Create blog")" dir="auto"/>
 | |
|   </form>
 | |
| })
 |