I\'m building a simple short URL service, ala bitly, for our company use. And I would like to use mongodb to store the data, but I will need some kind of simple interface to add
Django Admin is VERY MUCH possible with MongoDB. Have you looked into the Djongo project?
Djongo is a SQL to MongoDB query compiler. It translates every SQL query string into a mongoDB query document. As a result,
There is an article on Using Django with MongoDB by adding just one line of code, if you are looking for more information. Otherwise, you can jump directly into the djongo documentation and start using it.