gustavengstrom

Results 4 issues of gustavengstrom

The Tag model has "unique=True" set for the slug field. This must be an error since it implies that we can only have one tag per slug... Below is the...

In the example: "E-mailing or texting the user a link for purposes of using the touchscreen" https://docassemble.org/docs/recipes.html#hybrid There is a version has multi_user=False where the first interview references: second-interview.yml. When...

Docassemble produces an InternalServerError when trying to upload movie files ".mov" created in quicktime. Also I am unable to capture this error using the "error action". I attach a test.txt...

I have the following form. forms.py ``` class PersonForm(forms.Form): name = fields.CharField() text = fields.CharField(widget=RichTextarea()) ``` which is rendered using: urls.py ``` path( "test_form/", FormView.as_view( form_class=PersonForm, template_name="test_form/test_form.html", success_url="/test_form/", ), ),...