0e9c459446
Speed up convo_view.html Make ContentLines in ConvoViewRow an int as it should be. Shorten common. in the generated templates. Fix the page titles for the convo panes. Stop non-present users from editing their convo posts but still allow them to delete them, if they somehow have a way to do that. Reduce the amount of boilerplate in the currently broken guilds plugin.
21 lines
869 B
HTML
21 lines
869 B
HTML
<div class="colstack_item colstack_head rowhead">
|
|
<div class="rowitem">
|
|
<h1>{{lang "convo_head"}}</h1>
|
|
</div>
|
|
</div>
|
|
<div class="colstack_item parti">
|
|
<div class="rowitem">Participants: Blah, Blah 2, Blah 3</div>
|
|
</div>
|
|
<div class="colstack_item">{{template "convo_row.html" .}}</div>
|
|
{{if not .CurrentUser.IsBanned}}
|
|
<form action="/user/convo/create/submit/{{.Convo.ID}}?s={{.CurrentUser.Session}}" method="post">
|
|
<div class="colstack_item topic_reply_form" style="border-top:none;">
|
|
<div class="formrow">
|
|
<div class="formitem"><textarea class="input_content" name="content" placeholder="{{lang "profile_comments_form_content"}}"></textarea></div>
|
|
</div>
|
|
<div class="formrow quick_button_row">
|
|
<div class="formitem"><button name="reply-button" class="formbutton">{{lang "profile_comments_form_button"}}</button></div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{{end}} |