An Awesome extension that help quering with django faster and easier
- UI for building query
- Quick search and open table
- Support hotkey
- Support both Chrome and Firefox
Download extension
- Download and unpack the source code from the latest release or git-clone the master branch of this repository into a local folder
- Navigate to chrome://extensions
- Enable developer mode
- Click on "Load unpacked extension" and select folder
- Open
Addons and Themes
and Install from file
-
Select Extension file
-
Click
Add
when asked
- Click on column name or press
Ctrl + j
to open the dialog and search for column name
After input the value you can
- Press
Ctrl + Enter
to apply current filter - Press
Shift + Enter
to append current filter to existing filters
Press Ctrl + Shift + j
to open search table dialog
Search table name and then
Enter
to open selected tableCtrl + Enter
/Cmd + Enter
to open selected table in a new tab
- Press
Ctrl + k
to show pop up - Press
Enter
to execute command
# open table
from octosells.users
# query with conditions
from octosells.users where is_activated = true
# set alias
alias octosells as os
alias octosells.users as osu
# query with alias
from osu where name like %bluzky%
# query with relationship
from os.users where role.code = admin
=
, >
, >=
, <
, <=
, like
, ilike
, in
, is null
, is not null