{% load i18n %}{% load static %}
{% if rw_ce %}

{% trans "Add new" %} {% trans "Connect from stock" %}

{% endif %}
{% trans "Processors" %}
    {% for item in all_processors %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans 'Memory' %}
    {% for item in all_memory %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Hard drives" %}
    {% for item in all_hdd %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Motherboard" %}
    {% for item in all_systemboard %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Video cards" %}
    {% for item in all_gpu %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Batteries" %}
    {% for item in all_battery %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Case" %}
    {% for item in all_cases %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Controllers" %}
    {% for item in all_controllers %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Drives" %}
    {% for item in all_drives %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans 'Firmware' %}
    {% for item in all_firmwares %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Sound cards" %}
    {% for item in all_soundcards %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Power supplies" %}
    {% for item in all_power %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "PCI devices" %}
    {% for item in all_pci %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}
{% trans "Network cards" %}
    {% for item in all_net %}
  • {% include 'ce/actions_buttons.html' with is_dynamic=item.is_dynamic rw_ce=rw_ce %} {{ item.full_name }}
  • {% endfor %}