{% extends "software/base_software.html" %} {% load safe_markup %} {% load markup %} {% load paginator %} {% load show_stars %} {% load comments %} {% block sectionid %}browse{% endblock %} {% block title %} {% if search_term %} Projects matching {{ search_term|escape }}. {% else %} {% if os_license %} Projects that use the {{ os_license }} license. {% else %} {% if language %} Projects that use {{ language }} as the programming language. {% else %} {% if object.username %} Projects submitted by {{ object.username }} {% else %} All entries {% endif %} {% endif %} {% endif %} {% endif %} {% endblock %} {% block billboard %} {% if search_term %} Projects matching {{ search_term|escape }}. {% else %} {% if os_license %} {{ object_list.count }} projects found that use the {{ os_license }} license. {% else %} {% if language %} {{ object_list.count }} projects found that use {{ language }} as the programming language. {% else %} {% if object.username %} {% ifequal user.username object.username %} You've {% else %} {{ object.username }} has {% endifequal %} posted {{ object_list.count }} project{{ object_list.count|pluralize }}. {% else %} All entries {% endif %} {% endif %} {% endif %} {% endif %} {% endblock %} {% block content %} {% if object_list %} {% paginator 5%} {% for object in object_list %}
|
{{ object.description|firstwords:"cut=200"|markdown:"safe" }}
|
Could not find any software matching query {{ search_term|escape }}.
{% else %}No software posted yet.
{% endif %} {% endif %} {% endblock %}