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

{{ page.title }} {% if page.is_featured %}Featured{% endif %} {% if page.is_sponsored %}{% include "includes/sponsored_badge.html" %}{% endif %}

{{ page.summary }}

{% if page.official_url %} {% endif %} {% if page.license_name %} {% endif %} {% if page.scenarios.exists %} {% endif %} {% if page.languages.exists %} {% endif %} {% if page.frameworks.exists %} {% endif %} {% if page.databases.exists %} {% endif %} {% if page.features.exists %} {% endif %}
GitHub{{ page.github_url }}
Official Site{{ page.official_url }}
License{{ page.license_name }}
Maturity{{ page.get_maturity_display }}
Maintenance{{ page.get_maintenance_status_display }}
Scenarios {% for s in page.scenarios.all %}{{ s.title }}{% endfor %}
Languages {% for l in page.languages.all %}{{ l.name }}{% endfor %}
Frameworks {% for f in page.frameworks.all %}{{ f.name }}{% endfor %}
Databases {% for d in page.databases.all %}{{ d.name }}{% endfor %}
Features {% for feat in page.features.all %}{{ feat.name }}{% endfor %}

Scores

Structure{{ page.structure_score }}/5
Documentation{{ page.docs_score }}/5
Testing{{ page.tests_score }}/5
Examples{{ page.example_score }}/5
Dependency Control{{ page.dependency_score }}/5
Incremental Development{{ page.incremental_score }}/5
Total{{ page.total_score }}/30

Recommended For

{{ page.recommended_for|safe }}
{% if page.not_recommended_for %}

Not Recommended For

{{ page.not_recommended_for|safe }}
{% endif %} {% if page.review_notes %}

Review Notes

{{ page.review_notes|safe }}
{% endif %}
{% endblock %}