This commit is contained in:
Ayush Gupta
2012-12-04 22:11:55 +05:30
parent eb4198ccd0
commit 2212f73492

View File

@@ -1,8 +1,10 @@
{{#if supportedContentTypes}}
<label for="contentType"></label> <label for="contentType"></label>
<select name="contentType"> <select name="contentType">
{{#each supportedContentTypes}} {{#if supportedContentTypes}}
{{#each supportedContentTypes}}
<option value="{{{this}}}">{{{this}}}</option> <option value="{{{this}}}">{{{this}}}</option>
{{/each}} {{/each}}
</select> {{else}}
<option value="application/json">application/json</option>
{{/if}} {{/if}}
</select>