{% extends "admin/core/base.html" %} {% load static %} {% load foundation %} {% load bool_fa %} {% block title %}Review Recommendations{% endblock %} {% block title-section %}Review Recommendations{% endblock %} {% block title-sub %}Manange review recommendations{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Manager
  • Review Recommendations
  • {% endblock %} {% block body %}

    Current Recommendations for {{ request.repository.name }}

    Add New Recommendation

    You can create, edit and delete review recommendations for your repository using the interface here.

    Recommendations that are linked to existing reviws cannot be deleted but you can mark them as inactive.

    {% csrf_token %} {% for r in recommendations %} {% empty %} {% endfor %}
    Name Active Linked to Reviews Edit Delete
    {{ r.name }} {{ r.active|bool_fa }} {{ r.review_set.count }} Edit
    No recommendations.
    {% endblock %} {% block js %} {% endblock js %}