Created
January 18, 2011 01:28
-
-
Save wfaler/783844 to your computer and use it in GitHub Desktop.
new.mustache
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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