first commit

This commit is contained in:
Konstantin
2026-05-30 09:27:58 +03:00
commit de0344d218
2371 changed files with 661486 additions and 0 deletions
@@ -0,0 +1,10 @@
{{ text_welcome }}
{{ text_login }}
{{ login }}
{{ text_services }}
{{ text_thanks }}
{{ store }}
@@ -0,0 +1,8 @@
{{ text_welcome }}
{{ text_denied }}
{{ contact }}
{{ text_thanks }}
{{ store }}
@@ -0,0 +1,10 @@
{{ text_welcome }}
{{ text_login }}
{{ login }}
{{ text_service }}
{{ text_thanks }}
{{ store }}
@@ -0,0 +1,8 @@
{{ text_welcome }}
{{ text_denied }}
{{ contact }}
{{ text_thanks }}
{{ store }}
@@ -0,0 +1,9 @@
{{ text_greeting }}
{{ text_change }}
{{ reset }}
{{ text_ip }}
{{ ip }}
@@ -0,0 +1,16 @@
{{ text_return_id }} {{ return_id }}
{{ text_date_added }} {{ date_added }}
{{ text_return_status }}
{{ return_status }}
{% if comment %}
{{ text_comment }}
{{ comment }}
{{ text_footer }}
{% else %}
{{ text_footer }}
{% endif %}
@@ -0,0 +1,3 @@
{{ text_received }}
{{ text_total }}
@@ -0,0 +1,5 @@
{{ text_received }}
{{ text_total }}
{{ text_credit }}
@@ -0,0 +1,52 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>{{ title }}</title>
<style type="text/css">
body {
color: #000000;
font-family: Arial, Helvetica, sans-serif;
}
body, td, th, input, textarea, select, a {
font-size: 12px;
}
p {
margin-top: 0px;
margin-bottom: 20px;
}
a, a:visited, a b {
color: #378DC1;
text-decoration: underline;
cursor: pointer;
}
a:hover {
text-decoration: none;
}
a img {
border: none;
}
#container {
width: 680px;
}
</style>
</head>
<body>
<div id="container">
{% if image %}
<div style="float: right; margin-left: 20px;"><a href="{{ store_url }}" title="{{ store_name }}"><img src="{{ image }}" alt="{{ store_name }}" /></a></div>
{% endif %}
<div>
<p>{{ text_greeting }}</p>
<p>{{ text_from }}</p>
{% if message %}
<p>{{ text_message }}</p>
<p>{{ message }}</p>
{% endif %}
<p>{{ text_redeem }}</p>
<p><a href="{{ store_url }}" title="{{ store_name }}">{{ store_url }}</a></p>
<p>{{ text_footer }}</p>
</div>
</div>
</body>
</html>