{% extends 'stela_control/base_list.html' %} {% load static %} {% load i18n %} {% load humanize %} {% block title %}

Services

{% endblock %} {% block id_search %}reviews{% endblock %} {% block add_erase_button %}
{% endblock %} {% block search_title %}Search Service Rated{% endblock %} {% block thead %} Id User Services Transaction ID Quality Status {% endblock %} {% block tbody %} {% for item in pages %} {{item.id}} {{item.user.username}} {% for item in item.order.comments.all %} {{item.product.title}} {% endfor %} {{item.order.transaction_id}}
{% if item.status == 'New' %} Check Comment {% endif %} {% if item.status == 'True' %} Comment Aproved {% endif %} {% if item.status == 'False' %} Comment Rejected {% endif %} {% endfor %} {% endblock %} {% block footer_table %} Reviews List | {{stela_data.get_domain}} {% endblock %} {% block scripts %} {% endblock %}