{% extends "base-navbar.html" %} {% block content %}
{{ form.csrf_token }}

{{ funcao.funcao }}

{% if current_user.is_authenticated %}

Biblioteca {{ sathubconf.caminho_dll }} {% if not sathubconf.is_biblioteca_existente %} inexistente {% endif %}
Convenção de Chamada {{ sathubconf.convencao_chamada }} – {{ sathubconf.nome_convencao_chamada }}
Código de Ativação {{ sathubconf.codigo_ativacao }}

Python {{ python_version }} | Flask {{ flask_version }}
{{ platform_uname }}

{% else %} Você precisa fazer o login para poder ver os detalhes das configurações. {% endif %}
{% if resultado %} {# instância de sathub.executor.ResultadoFuncao #} {% from 'resposta/_falha.html' import painel_falha %} {% if resultado.sucesso %}

Sucesso

{% set template='resposta/'+resultado.funcao.lower()+'.html' %} {% include template %}
{% else %} {{ painel_falha(resultado, current_user=current_user) }} {% endif %} {% endif %} {% endblock %}