From d85de60acbfa19d2f3d48c43989d592972a1390a Mon Sep 17 00:00:00 2001 From: Jib Date: Mon, 3 Feb 2025 16:00:17 -0500 Subject: [PATCH] provide django version check guidance (#245) --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c028eff0..1545154d 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,14 @@ $ pip install --pre django-mongodb-backend==5.1.* From your shell, run the following command to create a new Django project called `example` using our custom template. Make sure the zipfile referenced -at the end of the template link corresponds to your -version of Django. The snippet below specifies `5.1.x.zip` at the end of +at the end of the template link corresponds to your version of Django. + +You can check what version of Django you're using with: +```bash +$ django-admin --version +``` + +The snippet below specifies `5.1.x.zip` at the end of the template url to get the template for any Django version matching 5.1: ```bash