{% 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 %}