Firdaus Aziz

Results 9 comments of Firdaus Aziz

> From my understanding, grid is for a different use case. But to be honest: We can use it like that - it's quite a simple solution and grid is...

@yusufulusoy I changed my Model and Resource file. No more error after that. models.py ``` class Location(models.Model): name = models.CharField(max_length=40) parent = models.ForeignKey( to="self", on_delete=models.CASCADE, related_name="children", blank=True, null=True, default=None, )...

> Including "emmet.includeLanguages": {"django-html": "html"}, into the settings file (as advised in the extensions details) fixed that for me. Afterwards IntelliSense handles both standard-html related as well as the django-html...

![Screenshot from 2023-12-14 10-58-12](https://github.com/jgthms/bulma/assets/1595757/ade9c1d2-cf95-466c-8063-1bb8caeaf438) Can't wait for v1

> @halfmoonui One thing that I would LOVE ❤️ is to have a few simple website templates to get me started. For example, could we create an `examples` repository that...

> hyperscript Glad I'm not the only one having problem with how DjLint is formatting HyperScript. This is how I write my Hyperscript (in data-script) and wish it to be...

My current solution is to disable formatting for hyperscript code ``` Menu 1 Menu 2 Menu 3 Food 1 Food 2 Food 3 ```

md/500px is the default modal size according to https://getbootstrap.com/docs/5.3/components/modal/#optional-sizes Perhaps that is why there is no dedicated breakpoint hook for md?

For me the least mental load is to put all the component files under `BASE_DIR / "components"`. Simple, direct, and the "same feel" like `BASE_DIR / "templates"`