From 111cf3bc5ddee5260353713e69aff6be2bb796fb Mon Sep 17 00:00:00 2001 From: Andrey Salomatin Date: Thu, 13 Jun 2013 12:17:44 +0800 Subject: [PATCH 1/2] Django 1.5 url tag support. See https://docs.djangoproject.com/en/1.5/ref/templates/builtins/#url --- .gitignore | 4 +++- README.md | 2 +- mongoadmin_project/mongoadmin/templates/mongoadmin/base.html | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4120439..46e58bc 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,6 @@ RUN_* *_secret.py secret.py .DS_Store -#settings.py +settings.py + +static/ diff --git a/README.md b/README.md index 66ec61b..e3b2683 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Getting started Make sure you have the following packages installed: -* Django 1.4 +* Django 1.4 or 1.5 * mongo-python-driver Make a copy the included default project settings: diff --git a/mongoadmin_project/mongoadmin/templates/mongoadmin/base.html b/mongoadmin_project/mongoadmin/templates/mongoadmin/base.html index 0e7d237..203fee6 100644 --- a/mongoadmin_project/mongoadmin/templates/mongoadmin/base.html +++ b/mongoadmin_project/mongoadmin/templates/mongoadmin/base.html @@ -48,7 +48,7 @@

MongoAdmin

{% endcomment %} {% comment %} From bf8d47fd0bd86600679256d0b7de77eb88b93479 Mon Sep 17 00:00:00 2001 From: Andrey Salomatin Date: Thu, 13 Jun 2013 13:28:30 +0800 Subject: [PATCH 2/2] Requirements. --- requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d24d467 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +Django==1.5.1 +MySQL-python==1.2.4 +pymongo==2.5.2 +wsgiref==0.1.2