{% extends "base.html" %} {% block title %}Site Tags{% endblock %} {% block content %}

Site Tags

Overview

Site tags functionality allows you to create Plex collections from albums that have been tagged on RED/OPS sites.

Statistics
  • Albums with mappings: {{ stats.mapped_albums }}
  • Total tags: {{ stats.total_tags }}
  • Total mappings: {{ stats.total_mappings }}
How it Works
  1. Scan albums: Use red-plex db remote-mappings scan to create mappings between your Plex albums and site group IDs
  2. Tags are collected: During the scan process, tags from the site are automatically stored
  3. Convert to collections: Use this interface or CLI to create Plex collections based on specific tags
Prerequisites: You need to have remote mappings data first. Use the Remote Mappings section to scan your albums.
{% if recent_mappings %}
Recent Tagged Albums
{% for mapping in recent_mappings %} {% endfor %}
Album Artist(s) Site Tags
{{ mapping.album_name }} {{ mapping.artists }} {{ mapping.site.upper() }} {% if mapping.tags %} {{ mapping.tags[:50] }}{% if mapping.tags|length > 50 %}...{% endif %} {% else %} No tags {% endif %}
{% endif %}
{% endblock %}