Search Results

0
votes

Is there any list of blog engines, written in Django?

Django's powerful admin interface and easy ORM makes it a 30 minute job to build a blog that propably fits your needs; Why look for a 3rd party product when you can make it yourself very quickly? …
1
vote

Rails or Django? (or something else?)

I'm a PHP developer as well and I really like Django; I have no experience with Ruby on Rails though; You can also use a PHP Framework offcourse, a good candidate is …
1
vote

What is the best way to migrate data in django

Look with manage.py sqlall what the parameters are for the new columns and manually add them in your database with Alter table statements. This way you don't have to redo your database; It requires …