Fabian Rothfuchs
Fabian Rothfuchs
+1 This works perfect! Thanks!
Same Here, using Frankfurt as my region. This seems to be due to some unsupported Auth mechanism: > > > print s3.delete_bucket('mySuperBucket') > > > Traceback (most recent call last):...
see https://github.com/rotherfuchs/django-js-reverse/commit/0de96a867d4ebf715f8aa13b57bf4f1f0a94a8ad for a solution hint
Next challenge would be to detect the current language and pick the proper format from the list. One way would be to create one file per language.
Yes, that would be a nice way!
Did anyone find out yet where that empty name comes from ?
This workaround works for now: ``` {% with foo="{'is-valid': formValid}" %} {% render_field field class="form-control" v-bind::class=foo %} {% endwith %} ``` or in my case within a form-loop: ``` {%...