25074b58b2
We now have an Advanced Forum Permissions Editor providing more granular control over permissions. Tweaked the button CSS and some other bits and pieces. Added a details section to the View Count Graph. Renamed a few template files for the sake of consistency and for an upcoming refactor. Unknown user agents are now logged in debug mode. Added GetCopy() to the forum permissions store. Fixed a crash bug in the forum deletion action. Refactored the permissions list in the group permissions editor.
33 lines
1.6 KiB
HTML
33 lines
1.6 KiB
HTML
{{template "header.html" . }}
|
|
<main>
|
|
<div class="rowblock rowhead">
|
|
<div class="rowitem"><h1>Create Topic</h1></div>
|
|
</div>
|
|
<div class="rowblock">
|
|
<form id="topic_create_form_form" enctype="multipart/form-data" action="/topic/create/submit/" method="post"></form>
|
|
<div class="formrow real_first_child">
|
|
<div class="formitem formlabel"><a>Board</a></div>
|
|
<div class="formitem"><select form="topic_create_form_form" id="topic_board_input" name="topic-board">
|
|
{{range .ItemList}}<option {{if eq .ID $.FID}}selected{{end}} value="{{.ID}}">{{.Name}}</option>{{end}}
|
|
</select></div>
|
|
</div>
|
|
<div class="formrow">
|
|
<div class="formitem formlabel"><a>Topic Name</a></div>
|
|
<div class="formitem"><input form="topic_create_form_form" name="topic-name" type="text" placeholder="Topic Name" required /></div>
|
|
</div>
|
|
<div class="formrow">
|
|
<div class="formitem formlabel"><a>Content</a></div>
|
|
<div class="formitem"><textarea form="topic_create_form_form" class="large" id="topic_content" name="topic-content" placeholder="Insert content here" required></textarea></div>
|
|
</div>
|
|
<div class="formrow">
|
|
<button form="topic_create_form_form" name="topic-button" class="formbutton">Create Topic</button>
|
|
{{if .CurrentUser.Perms.UploadFiles}}
|
|
<input name="quick_topic_upload_files" form="topic_create_form_form" id="quick_topic_upload_files" multiple type="file" style="display: none;" />
|
|
<label for="quick_topic_upload_files" class="formbutton add_file_button">Add File</label>{{end}}
|
|
<div id="upload_file_dock"></div>
|
|
<button class="formbutton close_form">Cancel</button>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{{template "footer.html" . }}
|