django-statusboard icon indicating copy to clipboard operation
django-statusboard copied to clipboard

A django based status page.

Results 5 django-statusboard issues
Sort by recently updated
recently updated
newest added

The field `Service.modified` is updated whenever any update statement occurs and it's displayed in the home page as the latest update. This information is useful but incomplete, because the field...

enhancement

See https://www.django-rest-framework.org/api-guide/schemas/#generating-a-static-schema-with-the-generateschema-management-command to generate the schema and https://redocly.com/docs/redoc/deployment/cli/ or https://github.com/yousan/swagger-yaml-to-html to generate the HTML file.

E.g. with https://eonasdan.github.io/bootstrap-datetimepicker/

enhancement

Notifications can be implemented in third-party applications using Django signal `post_save` and previous state (currently `Service._status` only). `django-statusboard` could provide custom signals for a set of events, e.g.: - Service...

enhancement

Configurable permission system, e.g. ```python STATUSBOARD_PERMISSION = "statusboard.permissions.LoginRequiredOrReadOnly" ``` Useful links: - http://www.django-rest-framework.org/api-guide/permissions/#custom-permissions - https://docs.djangoproject.com/en/1.10/topics/auth/default/#django.contrib.auth.mixins.AccessMixin

enhancement