2014-04-20 18:48:34 +04:00
|
|
|
<form>
|
|
|
|
<table class="plain">
|
|
|
|
<tbody>
|
|
|
|
<tr class="post-setting">
|
|
|
|
<td class="post-setting-label">
|
|
|
|
<label for="url">URL</label>
|
|
|
|
</td>
|
|
|
|
<td class="post-setting-field">
|
2014-07-15 08:02:34 +04:00
|
|
|
{{gh-blur-input class="post-setting-slug" id="url" value=slugValue name="post-setting-slug" action="updateSlug" placeholder=slugPlaceholder selectOnClick="true"}}
|
2014-04-20 18:48:34 +04:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="post-setting">
|
|
|
|
<td class="post-setting-label">
|
|
|
|
<label for="pub-date">Pub Date</label>
|
|
|
|
</td>
|
|
|
|
<td class="post-setting-field">
|
2014-07-15 08:02:34 +04:00
|
|
|
{{gh-blur-input class="post-setting-date" value=publishedAtValue name="post-setting-date" action="setPublishedAt" placeholder=publishedAtPlaceholder}}
|
2014-04-20 18:48:34 +04:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="post-setting">
|
|
|
|
<td class="post-setting-label">
|
|
|
|
<label class="label" for="static-page">Static Page</label>
|
|
|
|
</td>
|
|
|
|
<td class="post-setting-item">
|
2014-07-01 16:18:47 +04:00
|
|
|
{{input type="checkbox" name="static-page" id="static-page" class="post-setting-static-page" checked=page}}
|
|
|
|
<label class="checkbox" for="static-page" {{action 'togglePage' bubbles="false"}}></label>
|
2014-04-20 18:48:34 +04:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</form>
|
2014-07-14 21:33:47 +04:00
|
|
|
<button class="delete" {{action "openModal" "delete-post" this}}>Delete This Post</button>
|