{% extends "base.html" %} {% set active_page = "assets" %} {% block title %} Asset listing {% endblock %} {% block divs %}

All assets

{% for asset in assets: %} {% endfor %}
Name Location Capacity Resolution Asset id Owner id Entity address {% if user_is_admin %}
{% endif %}
{{ asset.display_name }} LAT: {{ "{:,.4f}".format( asset.latitude ) }} LONG: {{ "{:,.4f}".format( asset.longitude ) }} {{ "{:,.3f}".format( asset.capacity_in_mw ) }} MW {{ asset.event_resolution | naturalized_timedelta }} {{ asset.id }} {{ asset.owner_id }} {{ asset.entity_address }}
{% block paginate_tables_script %} {{ super() }} {% endblock %} {% endblock%}