vladlep
vladlep
This also happens with django 1.11 and django-suit==0.2.26
nice, this solves the issue:). Is there also a new release that i could update to? I would not to pull from the develop branch as it could break things...
thanks. I also noticed now that the search icon does not appear if you have a ForeignKey to a ProxyModel in django 1.8. I am not sure if this was...
Hi, Thanks for the very fast reply. I thought of adding an extra option in the select like this: ``` users.unshift({ name: gettext('All users'), id: "" }) ``` This would...
For me i solved this issue by changing the in the parseURI function from the ISO format to dd-MM-yyyy: ``` str = str.replace(/\{\{d:start\}\}/g, startDate.toString("dd-MM-yyyy")); str = str.replace(/\{\{d:end\}\}/g, endDate.toString("dd-MM-yyyy")); ``` Otherwise...
I am in Europe/Amsterdam +01 and yes, it is a timezone with daylight savings
Sorry again, but as i said on the other bug, i migrated the calendar to use a jquery one instead of d3. From what i remember: - we used date.js...
Sorry, I actually migrated my calendar to standard Jquery. I remember the data was one month of hours logs. So i would have timestamps for each day of the month...
Hi, I solved it a while ago but was a bit custom for our case. Did not consider if this way will work in other cases. You can see here...