From 99d2505c83ab71ff3caecee934319682dbfd95f5 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Thu, 2 Mar 2023 17:38:42 -0500 Subject: [PATCH] Correct readme formatting --- readme.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/readme.md b/readme.md index 3f5e2e0..3a10720 100644 --- a/readme.md +++ b/readme.md @@ -40,20 +40,20 @@ Change directory into the corresponding desired django project version, create/l Each project has logic to automatically create a handful of user models for testing purposes: * Super User: -** Username: `test_superuser` -** Email: `test_superuser@example.com` -** Permissions: is_active, is_superuser + * Username: `test_superuser` + * Email: `test_superuser@example.com` + * Permissions: is_active, is_superuser * Admin User: -** Username: `test_admin` -** Email: `test_superuser@example.com` -** Permissions: is_active, is_staff + * Username: `test_admin` + * Email: `test_superuser@example.com` + * Permissions: is_active, is_staff * Standard User: -** Username: `test_inactive` -** Email: `test_superuser@example.com` -** Permissions: None + * Username: `test_inactive` + * Email: `test_superuser@example.com` + * Permissions: None * Inactive User: -** Username: `test_user` -** Email: `test_superuser@example.com` -** Permissions: is_active + * Username: `test_user` + * Email: `test_superuser@example.com` + * Permissions: is_active All users can have the default password `temppass2`. -- GitLab