pprolancer

Results 3 issues of pprolancer

Hello, @douglasmiranda https://github.com/douglasmiranda/django-admin-bootstrap/blob/1c837e39e2beaf309398e648c174125189394130/bootstrap_admin/templates/admin/base.html#L125 in above line we shouldn't check accessibility with "is_staff". this cause problems for customized permission admin sites. we should replace that line with: {% if has_permission %}

I have an issue related the FilePreference when I configure my file storage as a S3Boto3Storage. I am using storages library to have S3 storage. the error is this: ```...

to reproduce this bug run this lines of python code ```python from datetime import datetime from pytz import FixedOffset, timezone tz1 = FixedOffset(420) dt = tz1.localize(datetime.now()) tz2 = timezone('America/Denver') tz2.normalize(dt)...