{% extends "base.html" %} {% block title %}{{ _('Equipment') }} โ€” The Shooter's Network{% endblock %} {% block content %}

{{ _('My Equipment') }}

{{ _('+ Add item') }}
{% if items %} {% set cat_labels = dict(categories) %} {% for cat_key, cat_label in categories %} {% set group = items | selectattr('category', 'equalto', cat_key) | list %} {% if group %}

{{ cat_label }}s

{% for item in group %}
{% if item.photo_url %} {{ item.name }} {% else %}
{% if item.category == 'rifle' or item.category == 'handgun' %}๐Ÿ”ซ {% elif item.category == 'scope' %}๐Ÿ”ญ {% else %}๐Ÿ”ฉ{% endif %}
{% endif %}
{{ item.name }}
{% if item.brand or item.model %}
{{ [item.brand, item.model] | select | join(' ยท ') }}
{% endif %} {% if item.caliber %}
{{ item.caliber }}
{% endif %}
{{ _('View') }} {{ _('Edit') }}
{% endfor %}
{% endif %} {% endfor %} {% else %}
๐Ÿ”ซ

{{ _('No equipment yet.') }}

{{ _('Add your first item') }}
{% endif %} {% endblock %}