JourneyJoker/templates/auction/offer_select.html

35 lines
1.5 KiB
HTML
Raw Normal View History

{% extends "frontend/base.html" %}
{% load static %}
{% block "styles" %}
2021-04-16 19:47:47 +00:00
<link rel="stylesheet" href="{% static "vendor/css/tabella.css" %}">
{% endblock %}
{% block "content" %}
2021-04-15 16:10:31 +00:00
<!--===== 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 %}
2021-04-15 16:10:31 +00:00
<div id="offers" style="text-align: center;"></div>
{% else %}
<div class="alert alert-warning alert-dismissible text-center" role="alert">
Leider sind zu deiner Anfrage bislang noch keine Angebote eingegangen. Komm doch einfach später nochmal vorbei!
</div>
{% endif %}
2021-04-15 16:10:31 +00:00
</div>
</div><!-- end columns -->
</div><!-- end row -->
</div><!-- end container -->
</div><!-- end coming-soon-text -->
</section><!-- end innerpage-wrapper -->
{% endblock %}
{% block "scripts" %}
2021-04-16 19:47:47 +00:00
<script src="{% static "vendor/js/tabella.min.js" %}"></script>
<script src="{% url "auction:offer_table" object.uuid %}"></script>
{% endblock %}