django-admin-charts
django-admin-charts copied to clipboard
right entries in dashboard starts please
I am trying to add Dashboard stats and testing several models but none of them works. I cannot figure out which box is for which. If yours works correctly, your model and entries in dashboard starts will be helpful.
class Example1(models.Model):
name = models.CharField(max_length=100)
quantity = models.IntegerField()
price = models.IntegerField()
created_at = models.DateTimeField(default=timezone.now)
def __str__(self):
return self.name
It couldn't find the app named test
. What is the Django app in which your model Example1
is placed?
Here is my configuration for inspiration:
Thank you so much. This is very useful. I could add dashboard stats. And 'No charts available, please configure them' appear on the left. How do I add charts or omit the word.
Note Jazzmin is installed.
I don't use Jazzmin, so it is not yet supported, but might be fixed by #72. I would gladly pull that PR when all issues are resolved.