add quickinfo app
This commit is contained in:
24
templates/quickinfo/search.html
Normal file
24
templates/quickinfo/search.html
Normal file
@ -0,0 +1,24 @@
|
||||
{% 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;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<b>{% trans "KEEN Quick Image Search" %}</b>
|
||||
<font size="-2"> {% trans "please input material number" %}</font>
|
||||
<form action="{% url 'quickinfo_result' %}" method='get'>
|
||||
<input type="text" name="id">
|
||||
<input type="submit" value="Go">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user