vincentwhales

Results 12 issues of vincentwhales

It seems like for some reason the exceptions in render_x methods are silenced. Is this by design? How can I turn this off?

Right now I am using a view like this: ``` class GenericListView(LoginRequiredMixin, SingleTableMixin, ListView): template_name = 'generic/list.html' context_table_name = 'object_list' ordering = ['-id'] ``` How can I tell SingleTableMixin to...

I am importing a large file containing rows from a crawler. Right now if one row has an invalid data my entire import is halted. Is there anyway to tell...

enhancement
question

This is my use case: I have a web portal where my clients can upload instruction files to my gdrive folder. The only OAuth token needed is mine - my...

``` ... ``` When Awesomplete is invoked on `#my_input` this breaks the recommended styling by bootstrap. Is there a way to NOT have awesomplete wrap a `` around the input?

In my django application, I have a model, Client, which holds information about the clients of my business. I have two groups of employees that uses my application - Technician...

enhancement

I would like to rename the field "status" to "portal_status" in my app. Originally this is what it looks like: ![image](https://user-images.githubusercontent.com/28204629/47807501-799b7a00-dcf9-11e8-901f-57aba35a9537.png) I executed `python manage.py renamefieldhistory --model=accounts.account --from_field=status --to_field=portal_status` and...

Enums are part of the standard lib right now and they are becoming mainstream. Can you do a tutorial on how we can integrate enums with SelectField?

enhancement

I am getting the following problem in my heroku app: 2017-08-01 20:54:22 ac744713-8102-4c83-81fc-b4be4786b925 selenium.webdriver.remote.remote_connection[4] DEBUG Finished Request Traceback (most recent call last): File "manage.py", line 89, in manager.run() File "/app/.heroku/python/lib/python2.7/site-packages/flask_script/__init__.py",...

I am using two extensions: Flask-User (which uses Flask-Babel), and Flask-Admin (which uses Flask-Babelex) When I try to get i18n working for my application, I am seeing cryptic errors such...