mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
16 lines
453 B
HTML
16 lines
453 B
HTML
|
{% extends "modal_form.html" %}
|
||
|
|
||
|
{% load inventree_extras %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block pre_form_content %}
|
||
|
<div class='alert alert-block alert-info'>
|
||
|
{% trans "Specify URL for downloading image" %}:
|
||
|
|
||
|
<ul>
|
||
|
<li>{% trans "Must be a valid image URL" %}</li>
|
||
|
<li>{% trans "Remote server must be accessible" %}</li>
|
||
|
<li>{% trans "Remote image must not exceed maximum allowable file size" %}</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
{% endblock %}
|