Re: Django development approach

2008-11-20 Thread John.R



On Nov 20, 3:54 pm, eldonp2 <[EMAIL PROTECTED]> wrote:
> I've spent some time getting comfortable with Django. I would like to
> try writing my first real app. I'd like to know whether I should go
> ahead to write everything from scratch, or whether...
> 1. Using pluggables can be easily integrated into an existing app
> 2. Whether it will be easy to change the look and feel (with CSS)
> afterwards. I want to concentrate on functionality right now.
> 3. Models, urls, views, forms and templates should be created as
> needed manually - and whether using a CMS would make this task easier.
>
> Thanks


It depends on what you want your First Real App to do. Check out as
many 'pluggables' as possible, but since you're coding, feel free to
code yourself, and see how you compare. Also check out Pinax, if
you're implementing any of the functionality that it brings as a base,
and you can build on top of that.

The look/feel is "no biggie". Django's template system, and it's
inheritance, makes doing that sort of thing super easy.

I'm sure others will have more to say than me.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django development approach

2008-11-20 Thread Brian Neal

On Nov 20, 3:54 pm, eldonp2 <[EMAIL PROTECTED]> wrote:
> I've spent some time getting comfortable with Django. I would like to
> try writing my first real app. I'd like to know whether I should go
> ahead to write everything from scratch, or whether...
> 1. Using pluggables can be easily integrated into an existing app

Just depends on whether these 3rd party apps fit your use-cases or
not.

> 2. Whether it will be easy to change the look and feel (with CSS)
> afterwards. I want to concentrate on functionality right now.

Well...yes, in my experience it is easy to add CSS later to change the
site. Just sprinkle in some classes and ids in your HTML templates so
you can easily style things later.

> 3. Models, urls, views, forms and templates should be created as
> needed manually - and whether using a CMS would make this task easier.

Not sure what you mean here.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Django development approach

2008-11-20 Thread eldonp2

I've spent some time getting comfortable with Django. I would like to
try writing my first real app. I'd like to know whether I should go
ahead to write everything from scratch, or whether...
1. Using pluggables can be easily integrated into an existing app
2. Whether it will be easy to change the look and feel (with CSS)
afterwards. I want to concentrate on functionality right now.
3. Models, urls, views, forms and templates should be created as
needed manually - and whether using a CMS would make this task easier.

Thanks
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---