redmarkets-negotiation/templates/partials/negotiation-sidebar.html

15 lines
449 B
HTML

<div class="negotiation-owner">
<p>The Market for this negotiation is {{room_owner_display_name}}</p>
{% if room_owner_display_name == uid %}
<p>Change your display name</p>
{% endif %}
</div>
<div class="participants">
<h4>Participants</h4>
<p><span class="count">{{ participant_count }}</span>&nbsp;<span> takers in this room</span></p>
<ul class="participant-list">
<li participant-id="{{user}}">{{user}}</li>
</ul>
</div>