From b6d59da4f3751baa1cee852e0ce903f32fda5464 Mon Sep 17 00:00:00 2001 From: Lincoln de Sousa Date: Wed, 15 Aug 2007 20:32:36 -0300 Subject: [PATCH] =?utf8?q?Adi=C3=A7=C3=A3o=20de=20t=C3=ADtulos=20nas=20se?= =?utf8?q?=C3=A7=C3=B5es...?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- templates/cadastro.html | 2 ++ templates/chamada_trabalhos.html | 2 ++ templates/editar_palestrante.html | 2 ++ templates/inscrever_palestra.html | 2 ++ templates/inscricao.html | 2 ++ templates/meus_trabalhos.html | 3 ++- 6 files changed, 12 insertions(+), 1 deletion(-) diff --git a/templates/cadastro.html b/templates/cadastro.html index 4eef47a..bbbde90 100644 --- a/templates/cadastro.html +++ b/templates/cadastro.html @@ -1,6 +1,8 @@ {% extends "base.html" %} {% block content %} +

Inscrição do Palestrante

+ {% if ok %}
diff --git a/templates/chamada_trabalhos.html b/templates/chamada_trabalhos.html index 55b5733..1550429 100644 --- a/templates/chamada_trabalhos.html +++ b/templates/chamada_trabalhos.html @@ -1,6 +1,8 @@ {% extends "base.html" %} {% block content %} +

Chamada de trabalhos

+ Texto aqui! Cadastrar palestrante diff --git a/templates/editar_palestrante.html b/templates/editar_palestrante.html index 40c2336..81e4c9f 100644 --- a/templates/editar_palestrante.html +++ b/templates/editar_palestrante.html @@ -1,6 +1,8 @@ {% extends "base.html" %} {% block content %} +

Editar Palestrante

+ {% if ok %}
diff --git a/templates/inscrever_palestra.html b/templates/inscrever_palestra.html index 0342891..58a81a3 100644 --- a/templates/inscrever_palestra.html +++ b/templates/inscrever_palestra.html @@ -1,6 +1,8 @@ {% extends "base.html" %} {% block content %} +

Submeter trabalho

+ {% if ok %}
diff --git a/templates/inscricao.html b/templates/inscricao.html index edb3a22..33e3de0 100644 --- a/templates/inscricao.html +++ b/templates/inscricao.html @@ -1,6 +1,8 @@ {% extends "base.html" %} {% block content %} +

Inscrição do participante

+ {% if ok %}
diff --git a/templates/meus_trabalhos.html b/templates/meus_trabalhos.html index 69265e4..84af9da 100644 --- a/templates/meus_trabalhos.html +++ b/templates/meus_trabalhos.html @@ -1,9 +1,10 @@ {% extends "base.html" %} {% block content %} +

Trabalhos Inscritos

+ {% if trabalhos %} -

Trabalhos

    {% for i in trabalhos %}
  • {{ i }}
  • -- 2.20.1