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>
|
||||
<% } %>
|
||||
|
||||
<% if (ctx.canEditPostTags) { %>
|
||||
<section class='tags'>
|
||||
<%= ctx.makeTextInput({
|
||||
text: 'Tags',
|
||||
value: ctx.post.tags.join(' '),
|
||||
}) %>
|
||||
</section>
|
||||
<% } %>
|
||||
|
||||
<% if (ctx.canEditPostRelations) { %>
|
||||
<section class='relations'>
|
||||
<%= ctx.makeTextInput({
|
||||
|
@ -46,6 +37,15 @@
|
|||
</section>
|
||||
<% } %>
|
||||
|
||||
<% if (ctx.canEditPostTags) { %>
|
||||
<section class='tags'>
|
||||
<%= ctx.makeTextInput({
|
||||
text: 'Tags',
|
||||
value: ctx.post.tags.join(' '),
|
||||
}) %>
|
||||
</section>
|
||||
<% } %>
|
||||
|
||||
<% if (ctx.canEditPostFlags && ctx.post.type === 'video') { %>
|
||||
<section class='flags'>
|
||||
<label>Miscellaneous</label>
|
||||
|
|
Loading…
Reference in a new issue