{% extends "base-home-section.html" %} {% load staticfiles %} {% block app_slug %}wikilegis{% endblock %} {% block section_title %}Contribua em projetos de lei{% endblock %} {% block section_title_attr %}Veja todas as projetos{% endblock %} {% block section_text %}Edite e aprimore projetos de lei artigo por artigo.{% endblock %} {% block plugin_url %}{% url 'wikilegis:colab_wikilegis' '' %}{% endblock %} {% block logo_url %}{% static 'img/logo-wikilegis.svg' %}{% endblock %} {% block cards %} {% for bill in wikilegis_data %}
  • {% if bill.status == "closed" %}
    {% else %}
    {% endif %}

    {{bill.title|truncatechars:40}}

    {{bill.description|truncatechars:160}}

  • {% empty %}
  • Desculpe. Não encontramos nenhum projeto de lei.

  • {% endfor %} {% endblock cards %}