4fe245901f
Task #3545: Remove repeated script imports from dcl's success.html
32 lines
No EOL
758 B
HTML
32 lines
No EOL
758 B
HTML
{% extends "datacenterlight/base.html" %}
|
|
{% load staticfiles i18n %}
|
|
{% block content %}
|
|
|
|
<div class="intro-pricing success-pricing">
|
|
|
|
<div class="intro-message">
|
|
<h2 class="section-heading">{% trans "Thank you for order! Our team will contact you via email" %}</h2>
|
|
{% if LANGUAGE_CODE == 'en-us'%}
|
|
<h2 class="section-heading">{% trans "as soon as possible!" %}</h2>
|
|
{% endif %}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
window.onload=function(){
|
|
$('.selectpicker').selectpicker({
|
|
style: 'btn-link',
|
|
windowPadding: 10,
|
|
});
|
|
|
|
var hash = window.location.hash.substr(1);
|
|
console.log(hash);
|
|
if (hash == 'requestform'){
|
|
$('#reques-success-message').modal('show');
|
|
}
|
|
|
|
};
|
|
</script>
|
|
|
|
{% endblock %} |