Piotr Synowiec

Results 7 comments of Piotr Synowiec

I save my notes on my disc in a folder that is synced with iCloud.

I should probably mention that this happened when I had two Logseq windows opened for a few days.

No, it was for the first time. I have the Logseq turned on all the time on my mac, and I have been using it for more than 3 months.

Hi Guys, I stumbled upon a similar problem. Wanted to create a model for Currencies based on CurrencyField (to have a list of Currencies for a Company, that sets the...

Here is the model: ` class Currency(TimeStampedModel): company = models.ForeignKey(Company, on_delete=models.CASCADE, related_name="companies") name = models.CharField(choices=settings.CURRENCY_CHOICES, default='USD', max_length=3) owner = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE) class Meta: verbose_name_plural = "Currencies" def __str__(self): return self.name...