mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 13:06:45 +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 %} |