client/posts: move relations above tags
This commit is contained in:
parent
8a68e182fd
commit
b378ce7ede
1 changed files with 9 additions and 9 deletions
|
@ -25,15 +25,6 @@
|
||||||
</section>
|
</section>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
<% if (ctx.canEditPostTags) { %>
|
|
||||||
<section class='tags'>
|
|
||||||
<%= ctx.makeTextInput({
|
|
||||||
text: 'Tags',
|
|
||||||
value: ctx.post.tags.join(' '),
|
|
||||||
}) %>
|
|
||||||
</section>
|
|
||||||
<% } %>
|
|
||||||
|
|
||||||
<% if (ctx.canEditPostRelations) { %>
|
<% if (ctx.canEditPostRelations) { %>
|
||||||
<section class='relations'>
|
<section class='relations'>
|
||||||
<%= ctx.makeTextInput({
|
<%= ctx.makeTextInput({
|
||||||
|
@ -46,6 +37,15 @@
|
||||||
</section>
|
</section>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
|
<% if (ctx.canEditPostTags) { %>
|
||||||
|
<section class='tags'>
|
||||||
|
<%= ctx.makeTextInput({
|
||||||
|
text: 'Tags',
|
||||||
|
value: ctx.post.tags.join(' '),
|
||||||
|
}) %>
|
||||||
|
</section>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
<% if (ctx.canEditPostFlags && ctx.post.type === 'video') { %>
|
<% if (ctx.canEditPostFlags && ctx.post.type === 'video') { %>
|
||||||
<section class='flags'>
|
<section class='flags'>
|
||||||
<label>Miscellaneous</label>
|
<label>Miscellaneous</label>
|
||||||
|
|
Loading…
Reference in a new issue