Skip to main content

Django Admin with Vali theme

Project description

Django Admin Vali

GitHub version Open Source Love

This project is based in django-vali project from cnanyi
https://github.com/cnanyi/django-vali.

Overview


Dashboard Administration

  • User who has permission to access the dashboard.
  • Can view all log entries.
  • Can view all dynamics data.

Requirements

  • django >= 2.0
  • python >= 3.0

Routes

  • url: /admin
    • Page with administrator access.
  • url: /admin/dashboard
    • Page with dashboard access.

Extra This project allows you to use i18n in urls. See more in Django Website.

Installation

Install using pip...

    $ pip install django-admin-vali

Add vali to your INSTALLED_APPS setting before django.contrib.admin.

    INSTALLED_APPS = (
        ...
        'vali',
        'django.contrib.admin',
        ...
    )

If you want to use Vali Dashboard, include vali.urls to your urls.py file.

    urlpatterns = (
        ...
        path('admin/', include(('vali.urls','vali'), namespace='dashboard')),
        ...
    )

In your settings, add VALI_CONFIG to enable dashboard view, change theme and get responsive permission fields.

    VALI_CONFIG = {
        'theme': 'default',
        'dashboard': {
            'name': 'Dashboard',
            'url': '/admin/dashboard/',
            'subtitle': 'Dashboard view with all statistics',
            'site_name': 'Dashboard admin',
            'url_image_profile': ''
        },
        'fieldset': {
            'fields': ['user_permissions', 'permissions']
        },
        'applist': {
            'order': "registry", "group": True
        }
    }  

To change the theme, just choose one of this: default, green, brown, blue, purple or create your own.

Usage

In your counters.py add ...

    from vali.counters import CounterBase
    from .models import Model

    class MyModelCounter(CounterBase):
        title = 'Title goes here'

        def get_value(self, request):
            return Model.objects.count()  

or

    from vali.counters import ModelCounter
    from .models import Model

    class MyModelCounter(ModelCounter):
        model = Model  

alt text

In your charts.py add ...

    from vali.charts import ModelCharts
    from .models import Model


    class ChartCounter(ModelCharts):
        model = Model
        chart_type = 'Bar'
        name = 'barchart1'
        labels = ["2018-03-01", "2018-03-02", "2018-03-03", "2018-03-04", "2018-03-05"]
        datasets = [
            {
                "label": "dataset 1",
                "fillColor": "rgba(220,220,220,0.2)",
                "strokeColor": "rgba(220,220,220,1)",
                "pointColor": "rgba(220,220,220,1)",
                "pointStrokeColor": "#fff",
                "pointHighlightFill": "#fff",
                "pointHighlightStroke": "rgba(220,220,220,1)",
                "data": [65, 59, 80, 81, 80]
            },
            {
                "label": "dataset 2",
                "fillColor": "rgba(151,187,205,0.2)",
                "strokeColor": "rgba(151,187,205,1)",
                "pointColor": "rgba(151,187,205,1)",
                "pointStrokeColor": "#fff",
                "pointHighlightFill": "#fff",
                "pointHighlightStroke": "rgba(151,187,205,1)",
                "data": [28, 48, 40, 19, 69]
            }
        ]  

In your views.py add ...

from .counters import MyModelCounter
from .charts import ChartCounter
from vali.views import ValiDashboardBase


class ModelDashboardView(ValiDashboardBase):
    template_name = 'dashboard.html'

    list_counters = [
        MyModelCounter(),
    ]   
    list_charts = [
        ChartCounter(),
    ]

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-admin-vali-0.1.8.tar.gz (515.2 kB view hashes)

Uploaded Source

Built Distribution

django_admin_vali-0.1.8-py3-none-any.whl (543.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page