adicionando o template que eu esqueci =/
authorLincoln de Sousa <lincoln@archlinux-br.org>
Fri, 28 Sep 2007 02:05:06 +0000 (23:05 -0300)
committerLincoln de Sousa <lincoln@archlinux-br.org>
Fri, 28 Sep 2007 02:05:06 +0000 (23:05 -0300)
templates/inscricao_boleto.html [new file with mode: 0644]

diff --git a/templates/inscricao_boleto.html b/templates/inscricao_boleto.html
new file mode 100644 (file)
index 0000000..ce90937
--- /dev/null
@@ -0,0 +1,20 @@
+{% extends "base.html" %}
+{% block content %}
+
+<h2>Geração do Boleto</h2>
+
+<strong>Nome:</strong> {{ nome }}<br />
+<strong>Endereço:</strong> {{ endereco }}<br />
+<strong>Cidade:</strong> {{ cidade }}<br />
+<strong>Estado:</strong> {{ uf }}<br />
+<strong>CEP:</strong> {{ cep }}<br />
+<br />
+
+<form id="cadastro" method="post"
+    action="https://www16.bancodobrasil.com.br/site/mpag/"
+    enctype="application/x-www-form-urlencoded">
+    {{ form.as_p }}
+    <input type="submit" name="enviar" id="enviar" value="Gerar Boleto" />
+</form>
+
+{% endblock %}