
improved dark mode user pref Fixed invalid default Group Fixed subscriptions showing when plugin was disabled Fixed messages and notifications showing when disabled
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<div class="context-main context-main-bg col-8 offset-2 my-3 p-3">
|
|
<div class="col-sm-12 col-md-6 col-lg-6 col-sm-offset-0 col-md-offset-3 col-lg-offset-3 top-pad" >
|
|
<div class="card panel-primary">
|
|
{LOOP}
|
|
{SINGLE}
|
|
<div class="card-header context-main-bg">
|
|
<h5 class="card-title context-main">{subject}</h5>
|
|
</div>
|
|
{/SINGLE}
|
|
<div class="card-body context-second-bg">
|
|
<div class="row">
|
|
<div class="col-md-3 col-lg-3 text-center">
|
|
<a href="{ROOT_URL}home/profile/{userFrom}">{userFrom}</a><br>
|
|
<img alt="User Pic" src="{ROOT_URL}{fromAvatar}" class="img-circle img-fluid">
|
|
</div>
|
|
<div class=" col-md-9 col-lg-9 context-main">
|
|
{message}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer context-main-bg">
|
|
{ADMIN}
|
|
{ID}
|
|
<span class="float-right">
|
|
{DTC}{sent}{/DTC}
|
|
</span>
|
|
{/ADMIN}
|
|
</div>
|
|
{/LOOP}
|
|
</div>
|
|
<form action="{ROOT_URL}messages/reply" method="post">
|
|
<input type="hidden" name="token" value="{TOKEN}">
|
|
<input type="hidden" name="messageID" value="{PID}">
|
|
<button name="submit" value="reply" type="submit" class="btn btn-md btn-primary my-4">Reply</button>
|
|
</form>
|
|
</div>
|
|
</div> |