{% extends "contributions/base.html" %} {% load pagination_tags %} {% load contribution_tags %} {% load base_tags %} {% load perm_tags %} {% load i18n %} {% block title %}{{ block.super }}{% trans "Search" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% contribution_nav request.user %}

{{ SITE_GLOBAL_SITEPRIMARYKEYWORDS }} {% firstof MODULE_CONTRIBUTION_LABEL trans 'Contributions' %} Search

{% contribution_search %} {% autopaginate contributions 10 %}
{% for contribution in contributions %} {% has_perm user contributions.view_contribution contribution as can_view %} {% if can_view %}

{{ contribution.content_type }}: {% firstof contribution.title "Untitled" %}

{% endif %} {% empty %}
{% trans "0 Results Found" %}
{% endfor %}
{% paginate %}
{% endblock %}