django-spaghetti-and-meatballs icon indicating copy to clipboard operation
django-spaghetti-and-meatballs copied to clipboard

Its a spicy meatball for serving up fresh hot entity-relationship diagrams straight from your django models.

Results 7 django-spaghetti-and-meatballs issues
Sort by recently updated
recently updated
newest added

If anyone is interested of searching a certain model, here is how I've done it. django_spaghetti/plate.html ```htlm {% block extra_scripts %} function searchNode(inputVal) { var s = nodes.get({ filter: function...

Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.4.1 to 0.4.4. Changelog Sourced from sqlparse's changelog. Release 0.4.4 (Apr 18, 2023) Notable Changes IMPORTANT: This release fixes a security vulnerability in the parser where a...

dependencies

I'm trying django spaghetti with these models ``` class Organization(Entity): name = models.CharField(max_length=100) class Program(Entity): name = models.CharField(max_length=100) members = models.ManyToManyField(Organization, through="ProgramMember") class ProgramMember(Entity): organization = models.ForeignKey(Organization, on_delete=models.CASCADE) program =...

I can't see the Model Field Type beside my Model Field Name on opening pop-up as shown in the Readme picture. I can't even find a configuration that helps for...

You must have a much bigger monitor than me. Design flaw, though. No?

Hi, thanks for working on this great project. Not sure, if this should really be raised as an issue... Is there a way to specify databases other than 'default'?