PDA

View Full Version : Django beginner needs help...



Dhiraj Thakur(Invincible)
October 5th, 2011, 07:05 AM
hi guys
i have started learning django and wanted to ask some questions about it...
1.I know we can create web apps using django but will django take care of the HTML\CSS of the web app?
2. Can i create a complete website using django and by complete i mean a nice,simple and good looking site...??

Pynalysis
October 5th, 2011, 11:22 AM
hi guys
i have started learning django and wanted to ask some questions about it...
1.I know we can create web apps using django but will django take care of the HTML\CSS of the web app?
2. Can i create a complete website using django and by complete i mean a nice,simple and good looking site...??

1. Django is a web framework that makes creating dynamic sites easier. Repetitive HTML/CSS writing can be bypassed using Django's template system to render context to web pages using a single .html file. However, you would need to write the HTML and learn how to use Django's template system to achieve this.

2. Yes - you can create a complete website with Django. To build a nice looking site you could bring in a JavaScript framework, such as ExtJS, for an appealing graphical user interface.

Dhiraj Thakur(Invincible)
October 6th, 2011, 11:35 AM
Thanks for your help mate :)
i'll try ...

Pynalysis
October 8th, 2011, 07:09 AM
You are welcome :)