You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.
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.
The text was updated successfully, but these errors were encountered: