JourneyJoker/templates/auction/offer_noselect.html

36 lines
1.7 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "frontend/base.html" %}
{% load static %}
{% load i18n %}
{% block "styles" %}
<link rel="stylesheet" href="{% static "vendor/css/tabella.css" %}">
{% endblock %}
{% block "content" %}
<!--===== INNERPAGE-WRAPPER ====-->
<section class="innerpage-wrapper">
<div id="payment-success" class="section-padding">
<div class="container text-center">
<div class="row d-flex justify-content-center">
<div class="col-md-12 col-lg-8 col-lg-offset-2">
<div class="payment-success-text">
<h1>Angebote vergleichen</h1>
{% if object.offer_set.all %}
Zu deiner Anfrage sind bislang {{ object.offer_set.all|length }} Angebote eingegangen. Aber gedulde dich bitte noch ein wenig vielleicht werden es ja noch mehr! Deine Angebote werden freigeschalten in:
{% else %}
<div class="alert alert-warning alert-dismissible text-center" role="alert">
Zu deiner Anfrage sind bislang noch keine Angebote eingegangen. Aber ein bisschen Zeit ist ja noch deine Angebote werden freigeschaltet in:
</div>
<input type="hidden" id="bidding_end" value="{{ object.bidding_end|date:"U" }}">
<div id="counter" class="cf"></div>
{% endif %}
</div>
</div><!-- end columns -->
</div><!-- end row -->
</div><!-- end container -->
</div><!-- end coming-soon-text -->
</section><!-- end innerpage-wrapper -->
{% endblock %}
{% block "scripts" %}
<script src="{% static "vendor/js/jquery.countdown.js" %}"></script>
{% endblock %}