{% extends "base.html" %} {% block title %}Assets - Art-DAG{% endblock %} {% block content %}

Your Assets

{% if assets %}
{% for asset in assets %} {% if asset.asset_type == 'image' %} {{ asset.name }} {% elif asset.asset_type == 'video' %}
{% else %}
{{ asset.asset_type }}
{% endif %}
{{ asset.name }}
{{ asset.asset_type }}
{% if asset.ipfs_cid %}
Published
{% endif %}
{% endfor %}
{% if has_more %}
Loading more...
{% endif %} {% else %}

No assets yet

Create content on an L1 renderer and publish it here.

{% endif %}
{% endblock %}