{% extends "base.html" %} {% block title %}{{ group.name }} — Shared Watchlist{% endblock %} {% block content %}
Shared by {{ owner.name }} · {{ watchlist_coins|length }} coin{{ 's' if watchlist_coins|length != 1 }}
Watchlist ini kosong
| # | {{ item_label }} | Price | 24h Change | Type |
|---|---|---|---|---|
| {{ loop.index }} |
{% if item.asset.icon_thumb_url %}
{{ item.asset.symbol[:2] }}
{% endif %}
{{ item.asset.name }} {{ item.asset.symbol }} |
{% if item.profile and item.profile.current_price_idr %} {% if item.asset.asset_type == 'stock_us' %} ${{ '{:,.2f}'.format(item.profile.current_price_idr) }} {% else %} Rp {{ '{:,.0f}'.format(item.profile.current_price_idr) }} {% endif %} {% else %} — {% endif %} | {% if item.profile and item.profile.price_change_24h is not none %} {% set change = item.profile.price_change_24h %} {{ '{:+.2f}'.format(change) }}% {% else %} — {% endif %} | {{ item.asset.asset_type|replace('_', ' ')|title }} |