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

Material Design for Django

Results 34 django-material issues
Sort by recently updated
recently updated
newest added

We've been using Django(v3.2) in combination with material(v1.11.2) for a while now and are currently trying to migrate onto Django v4.1. Unfortunately we receive an exception when executing "collectstatic" with...

There are small typos in: - material/frontend/views/detail.py - material/static/material/js/jquery.dataTables.js - material/static/material/js/jquery.datetimepicker.full.js - material/static/material/js/materialize.js Fixes: - Should read `insensitive` rather than `insenstive`. - Should read `dragged` rather than `draggeed`. - Should...

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) Commits See full diff in compare...

dependencies

There are several issues with the following code: https://github.com/viewflow/django-material/blob/55561ac10e40c5e21bbc7fc42dba77a13b20384e/material/frontend/context_processors.py#L6-L8 - `TEMPLATE_CONTEXT_PROCESSORS` has long been replaced with the more complex `TEMPLATES` configuration - `django.contrib.auth.context_processors.auth` adds a user to the context, **not**...

I've started trying to reimplement a UI with django-material again from scratch. I'm running into an error and I've put quite a lot of time into trying to figure it...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Looks like the tooltip feature is not initialized as the following code doesn't work ` Hover me! ` Adding the following make it works `$(document).ready(function(){ $('.tooltipped').tooltip(); });`

material.frontend.views.list.DataTableMixin.get_data_attr _line 220_ please change to something like this: `if hasattr(self, 'object_list') and self.object_list is not None:` https://github.com/viewflow/django-material/blob/615913ea86db35e56e518a772d317dc44f392f2b/material/frontend/views/list.py#L220 https://docs.djangoproject.com/en/4.0/ref/models/querysets/#when-querysets-are-evaluated

Hi @kmmbvnr , I also tried `{% part form.captcha errors %}Render me{% endpart %}`. This is very useful in some cases like ReCaptcha. Or i'm wrong and there's a possibility...