30 lines
825 B
HTML
30 lines
825 B
HTML
{#
|
|
NPCs Accordion Content
|
|
Shows NPCs at current location with click to chat
|
|
#}
|
|
{% if npcs %}
|
|
<div class="npc-list">
|
|
{% for npc in npcs %}
|
|
<div class="npc-item"
|
|
hx-get="{{ url_for('game.npc_chat_modal', session_id=session_id, npc_id=npc.npc_id) }}"
|
|
hx-target="#modal-container"
|
|
hx-swap="innerHTML">
|
|
<div class="npc-name">{{ npc.name }}</div>
|
|
<div class="npc-role">{{ npc.role }}</div>
|
|
<div class="npc-appearance">{{ npc.appearance }}</div>
|
|
{% if npc.tags %}
|
|
<div class="npc-tags">
|
|
{% for tag in npc.tags %}
|
|
<span class="npc-tag">{{ tag }}</span>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="quest-empty">
|
|
No NPCs at this location.
|
|
</div>
|
|
{% endif %}
|