postgres db editor for juntagrico.
This is an extension for juntagrico. You can find more information about juntagrico here (https://github.com/juntagrico/juntagrico)
Install juntagrico-pg via pip
$ pip install juntagrico-pg
or add it in your projects requirements.txt
In settings.py
add 'juntagrico_pg',
before juntagrico.
INSTALLED_APPS = [
...
'juntagrico_pg',
'juntagrico',
]
In your urls.py
you also need to extend the pattern:
urlpatterns = [
...
path('', include('juntagrico_pg.urls')),
]