From 168bcdd32a7d14c7958e840153644a3f4bc38b8e Mon Sep 17 00:00:00 2001 From: Lincoln de Sousa Date: Tue, 14 Aug 2007 15:40:51 -0300 Subject: [PATCH] =?utf8?q?pequenas=20melhorias=20no=20estilo,=20altera?= =?utf8?q?=C3=A7=C3=A3o=20na=20mensagem=20de=20confirma=C3=A7=C3=A3o=20de?= =?utf8?q?=20cadastro=20de=20trabalho,=20e=20altera=C3=A7=C3=A3o=20do=20li?= =?utf8?q?nk=20do=20cadastro=20de=20palestrantes=20(j=C3=A1=20havia=20sido?= =?utf8?q?=20mudado=20na=20view).?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- media/css/geral.css | 26 ++++++++++++++++++++++++++ templates/chamada_trabalhos.html | 2 +- templates/inscrever_palestra.html | 2 +- urls.py | 4 ++-- 4 files changed, 30 insertions(+), 4 deletions(-) diff --git a/media/css/geral.css b/media/css/geral.css index 8dbc370..4e6e12c 100644 --- a/media/css/geral.css +++ b/media/css/geral.css @@ -28,6 +28,8 @@ label { display: block; width: 180px; font-weight: bold; + font-style: normal; + color: #000; } em { @@ -136,3 +138,27 @@ a:hover { color: red; list-style-type: none; } + +#cadastro input[type=text] { + width: 300px; +} + +#cadastro p { + display: block; + width: 450px; + font-style: italic; + font-size: small; + color: #666; +} + +#cadastro p textarea { + width: 100%; +} + +#id_descricao_curta { + height: 60px; +} + +#id_recursos { + height: 150px; +} diff --git a/templates/chamada_trabalhos.html b/templates/chamada_trabalhos.html index ff8ea9f..55b5733 100644 --- a/templates/chamada_trabalhos.html +++ b/templates/chamada_trabalhos.html @@ -3,6 +3,6 @@ Texto aqui! -Cadastrar palestrante +Cadastrar palestrante {% endblock %} diff --git a/templates/inscrever_palestra.html b/templates/inscrever_palestra.html index a771ca7..0342891 100644 --- a/templates/inscrever_palestra.html +++ b/templates/inscrever_palestra.html @@ -4,7 +4,7 @@ {% if ok %}
-

Sua palestra foi cadastrada com sucesso!

+

Seu trabalho foi cadastrado com sucesso!

{% else %} diff --git a/urls.py b/urls.py index 4dfe4a7..0899686 100644 --- a/urls.py +++ b/urls.py @@ -29,8 +29,8 @@ urlpatterns = patterns('', (r'^logout/', 'django.contrib.auth.views.logout', {'next_page': '/'}), (r'^inscricao/', views.inscricao), - (r'^inscrever_palestra/', views.inscrever_palestra), - (r'^cadastro/', views.cadastro), + (r'^submeter_trabalho/', views.submeter_trabalho), + (r'^cadastro_palestrante/', views.cadastro_palestrante), (r'^meus_trabalhos/', views.meus_trabalhos), (r'^chamada_trabalhos/', views.chamada_trabalhos), -- 2.20.1