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

15 lines
449 B
HTML
Raw Normal View History

2020-04-19 23:52:13 +00:00
<div class="negotiation-owner">
2020-04-20 05:42:52 +00:00
<p>The Market for this negotiation is {{room_owner_display_name}}</p>
2020-04-19 23:52:13 +00:00
{% 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>