yakovyarmo

Results 16 comments of yakovyarmo

It stopped working at version 0.60.0 On Wed, Jun 30, 2021, 12:40 stefnotch ***@***.***> wrote: > It does work with version 0.59.0. > So can we inspect what changed in...

Where can I find the commit for: " - Fixed issues with copy/paste. Copying from a text zone will copy the text (and not a latex representation of it). Copy...

I there any progress or way to do that?

Did you manage to use ngnix to serve the static files?

Why the tag is help wanted?

``` class A(models.Model): subjects = models.ManyToManyField(CourseSubject, through='CourseQuestionSubjectRelation', through_fields=('a', 'subject')) _history_m2m_fields = ['subjects'] class ARelation(models.Model): a = models.ForeignKey(a, on_delete=models.CASCADE) subject = models.ForeignKey(CourseSubject, on_delete=models.CASCADE) difficulty = models.IntegerField(default=0) type = models.ManyToManyField(CourseQuestionType, through='CourseQuestionSubjectTypeRelation', through_fields=('question_subject_relation',...