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

Perguntas

Nova Pergunta
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% if perguntas %} {% for pergunta in perguntas %} {% endfor %} {% else %} {% endif %}
Código Texto Assunto Setor Tipo Status Ações
{{ pergunta.codigo }} {{ pergunta.texto }} {{ pergunta.assunto.descricao }} {{ pergunta.setor.descricao }} {% if pergunta.tipo_resposta == 'texto' %} Texto {% elif pergunta.tipo_resposta == 'numero' %} Número {% elif pergunta.tipo_resposta == 'selecao' %} Seleção {% elif pergunta.tipo_resposta == 'multipla_escolha' %} Múltipla Escolha {% endif %} {% if pergunta.ativo %}Ativa{% else %}Inativa{% endif %}
Nenhuma pergunta cadastrada.
{% endblock %} {% block scripts %} {% endblock %}