Christian González

Results 219 comments of Christian González

The problem is, that e.g. in a model's ForeignKey `user=3`, where the related model has `id=3, name="John"` everything is clear. id is the id, name is the name. when serializing,...

Yes, "merging" the two projects wouldn't be a good option, as especially django-components has a much bigger usebase IMHO, and slightly different goals. Tetra more feels like a batteries-included framework,...

Whow, that was fast and much. I'm a bit overwhelmed...positively ;-) I tried to go through all points and commented everything I thought needs to; Everything I cut out I...

> [@nerdoc](https://github.com/nerdoc) Also thanks for the details response :) > > > On web sockets > > I didn't realize that Tetra uses web sockets. Agree i'd be amazing if...

Hello @JuroOravec again. I like the idea of depending on djc more and more. I read a bit of the docs on djc extensions, but I don't get it really:...

> I'd like to make the shorter syntax the default in v2. The dynamic component would then be written as: > > {% dynamic is="my_table" %}{% enddynamic %} You mean...

I am currently exploring how the code could be combined, and try to code a `TetraComponent`, inheriting from `django_components.Component`. There are a few issues that I am currently experiencing, where...

2. Component.render() is a classmethod. in Tetra, I need this as instance method, as it needs to save/load properties of one instance. Ideas on how to handle that? I think...

Hmmmm. Yes, there is a render() method in Tetra components. But the method needs the current component's data (properties, like `title`, `done`, `todo` in the `Todo` class), because it needs...

Hi @aptiko, this looks great. The docs definitely need some love. You can certwinly ioen a PR for this, and I'd be happy to merge it. Just make sure code...