28 lines
790 B
HTML
28 lines
790 B
HTML
{% load staticfiles i18n %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ settings.CUSTOMER_NAME }} ProCatalog: {% trans "Material Search"%}</title>
|
|
<link href="{% static 'img/favicon.ico' %}" rel="shortcut icon" />
|
|
<style>
|
|
html {
|
|
background-color: white;
|
|
font-family: sans-serif;
|
|
}
|
|
h4 {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h4>{% trans "KEEN Quick Image Search" %}</h4>
|
|
<font size="-2"> {% trans "please input material number" %}</font>
|
|
<form action="{% url 'quickinfo_result' %}" method='get' target="_blank">
|
|
<input type="text" name="id">
|
|
<input type="submit" value="Go">
|
|
</form>
|
|
</body>
|
|
</html>
|