mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-16 14:08:12 +00:00
9 lines
271 B
HTML
9 lines
271 B
HTML
{% extends 'view_file_base.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block extra_script %}{{ block.super }}
|
|
<script type="text/javascript">
|
|
$('#file-view').html('<div id="file-view-tip"><p>{% trans "This type of file cannot be viewed online." %}</p></div>');
|
|
</script>
|
|
{% endblock %}
|