{% extends "base.html" %}
{% load staticfiles widgets_tag %}
{% block title %}E-Democracia{% endblock %}
{% block html %}
{% import_widgets 'home_section' %}
{{block.super}}
{% endblock html %}
{% block main %}
{% include "owner-section.html" %}
{% for widget in widgets_home_section %}
{{widget.get_body}}
{% endfor %}
{% endblock main %}
{% block extra_js %}
{% include "filter.js" %}
{% endblock extra_js %}