3words/views/inbox.html

27 lines
807 B
HTML

{include="layout"}
{include="navbar"}
<div class="container">
{if="$message"}
<div class="alert alert-info">{$message}</div>
{/if}
<div class="row">
<div class="col-md-3">
<ul class="nav nav-pills nav-stacked">
<li class="active"><a href="#">Inbox</a></li>
<li><a href="ucp.php?page=settings">Settings</a></li>
</ul>
</div>
<div class="col-md-9">
<h4>Answers you got:</h4>
<table class="table table-responsive table-bordered table-condensed">
<tbody>
{loop="$words"}
<td>{$value.author} wrote that you are <span class="label label-default">{$value.first}</span>, <span class="label label-default">{$value.second}</span> and <span class="label label-default">{$value.third}</span></td>
{/loop}
</tbody>
</table>
</div>
</div>
</div>
{include="footer"}