I hereby claim:
- I am ielshareef on github.
- I am ielshareef (https://keybase.io/ielshareef) on keybase.
- I have a public key ASAm4oZdKu3bOz8wdqPMIkBfmAjZkWWZIRoo1jT_7Gi02Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// functionality is broken across many code snippets wrapped in a function | |
var array_of_functions = [ | |
function() { | |
// do something 1 | |
}, | |
function() { | |
// do something 2 | |
}, | |
function() { | |
// do something 3 |
by Ismail Elshareef
If you're using MongoDB with Django, you will need to manage ListField and EmbeddedModelField type fields in Django's admin module. Unfortunately, that's not so easy to do out of the box. You need to do some hacking to get it done. Here's a good link on how to use ListField in admin https://gist.github.com/1200165.
Now let's find out how we can use EmbeddedModelField with admin. Let's start hacking :)
by Ismail Elshareef
Django's database setting are by default set to work with relational databases. Therefore, certain issues start popping up when you work with noSQL databases, like MongoDB.
If you're running Django-nonrel with Mongodb, you will run into an issue when you execute the following command: