Skip to content

juntagrico/juntagrico-pg

Repository files navigation

juntagrico-pg

juntagrico-ci Maintainability Test Coverage image image image image image image image

postgres db editor for juntagrico.

This is an extension for juntagrico. You can find more information about juntagrico here (https://github.com/juntagrico/juntagrico)

Installation

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')),
]