Skip to content

Instantly share code, notes, and snippets.

@wfaler
Created January 18, 2011 01:28
Show Gist options
  • Save wfaler/783844 to your computer and use it in GitHub Desktop.
Save wfaler/783844 to your computer and use it in GitHub Desktop.
new.mustache
<h3>Create new Widget</h3>
<ul>
{{#validationErrors}}
<li>{{.}}</li>
{{/validationErrors}}
</ul>
{{#widget}}
<form method="POST" action="/widgets">
Id<br/>
<input name="widget.id" value="{{id}}"/><br/>
Name<br/>
<input name="widget.name" value="{{name}}"/><br/>
Price in Pence<br/>
<input name="widget.priceInPence" value="{{priceInPence}}"/><br/>
<input type="submit" value="Create!"/>
</form>
{{/widget}}
{{^widget}}
No Widget :( <br/>
<a href="/widgets">Go back</a>
{{/widget}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment