We should probably not be raising 500s for missing assets (as is currently the case when a file can't be found in the static manifest).
Two possible solutions are 1) to catch the error in the storage backends url() method or 2) to create a custom {% static %} template tag and catch the errors in that. (Logging the error in either case.)
We should probably not be raising 500s for missing assets (as is currently the case when a file can't be found in the static manifest).
Two possible solutions are 1) to catch the error in the storage backends
url()method or 2) to create a custom{% static %}template tag and catch the errors in that. (Logging the error in either case.)