{% extends "base.html" %} {% block content %}

{{ page.title }}

{% if projects %}
{% for project in projects %}

{{ project.title }}

{{ project.summary|truncatewords:20 }}

{{ project.total_score }}/30 AI-Friendly Score
{% for lang in project.languages.all|slice:":3" %} {{ lang.name }} {% endfor %}
{% endfor %}
{% if projects.paginator.num_pages > 1 %} {% endif %} {% else %} {% include "includes/empty_state.html" with message="No projects found in this scenario." %} {% endif %} {% endblock %}