Skip to content

Commit 67dc4fd

Browse files
author
Louis Béranger
committed
Shorter example
1 parent 3764cf7 commit 67dc4fd

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

docs/configuration.rst

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ Panel options
237237

238238
**Without grouping**::
239239

240-
SELECT "auth_user"."id", "auth_user"."password", "auth_user"."last_login", "auth_user"."is_superuser", "auth_user"."username", "auth_user"."first_name", "auth_user"."last_name", "auth_user"."email", "auth_user"."is_staff", "auth_user"."is_active", "auth_user"."date_joined"
240+
SELECT "auth_user"."id", "auth_user"."password", "auth_user"."last_login", "auth_user"."is_superuser", "auth_user"."username", "auth_user"."first_name", "auth_user"."last_name"
241241
FROM "auth_user"
242-
WHERE "auth_user"."username" = '''dzqqq'''
242+
WHERE "auth_user"."username" = '''test_username'''
243243
LIMIT 21
244244

245245
**With grouping**::
@@ -251,12 +251,8 @@ Panel options
251251
"auth_user"."username",
252252
"auth_user"."first_name",
253253
"auth_user"."last_name",
254-
"auth_user"."email",
255-
"auth_user"."is_staff",
256-
"auth_user"."is_active",
257-
"auth_user"."date_joined"
258254
FROM "auth_user"
259-
WHERE "auth_user"."username" = '''dqz'''
255+
WHERE "auth_user"."username" = '''test_username'''
260256
LIMIT 21
261257

262258
Here's what a slightly customized toolbar configuration might look like::

0 commit comments

Comments
 (0)