spee.ch/views/partials/publishForm-Details.handlebars

41 lines
1.3 KiB
Handlebars
Raw Normal View History

2017-09-27 00:12:47 +02:00
<div class="row">
<div class="column column--3">
<label class="label">Details:</label>
</div>
<div class="column column--9">
<a class="toggle-link" id="details-toggle" href="#" onclick="toggleSection(event)" data-open="false" data-slaveelementid="details-detail">[open]</a>
</div>
</div>
<div class="row" id="details-detail" hidden="true">
2017-09-19 17:47:24 +02:00
<table>
<tr>
<td><label for="publish-title">Title: </label></td>
2017-09-19 21:54:23 +02:00
<td><input type="text" id="publish-title" class="input-text input-text--primary"></td>
2017-09-19 17:47:24 +02:00
</tr>
<tr>
<td><label for="publish-description">Description: </label></td>
2017-09-21 09:18:34 +02:00
<td><textarea rows="2" id="publish-description" class="textarea textarea--primary"> </textarea></td>
2017-09-19 17:47:24 +02:00
</tr>
<tr>
<td><label for="publish-license">License:* </label></td>
<td>
<select type="text" id="publish-license" name="license" value="license">
<option value="Public Domain">Public Domain</option>
<option value="Creative Commons">Creative Commons</option>
</select>
</td>
</tr>
<tr>
<td><label for="publish-nsfw">NSFW*</label></td>
<td><input type="checkbox" id="publish-nsfw"></td>
</tr>
</table>
2017-09-27 00:12:47 +02:00
</div>
2017-09-27 00:12:47 +02:00