()
| 395 | |
| 396 | |
| 397 | def error404(): |
| 398 | domain_data = get_domain_data() |
| 399 | return make_response(render_template( |
| 400 | "error404.html", |
| 401 | domain_data=domain_data, |
| 402 | all_data=constants.DOMAIN_DATA, |
| 403 | language_code="en", |
| 404 | languages=get_languages(), |
| 405 | language_names=get_language_names(), |
| 406 | ), 404) |
| 407 | |
| 408 | |
| 409 | # We are checking only the current domain subfolder and adding all the files to files_to_track array |
no test coverage detected