Partly implement gallery views in offer selection
This commit is contained in:
parent
12e04ab4d4
commit
30a91d1ce7
1 changed files with 4 additions and 3 deletions
|
@ -6,7 +6,7 @@
|
|||
{
|
||||
from: "",
|
||||
tableHeader: [
|
||||
{% for offer in object_list %}['{{ offer.roomcategory.establishment.name }}<br/>{% autoescape off %}{% stars offer.roomcategory.establishment.stars offer.roomcategory.establishment.superior orange %}{% endautoescape %}{% if offer.roomcategory.establishment.image %}<br/><img style="max-height:100px;max-width:100%;" src="{{ offer.roomcategory.establishment.image.url }}"></img>{% endif %}'],{% endfor %}
|
||||
{% for offer in object_list %}['{{ offer.roomcategory.establishment.name }}<br/>{% if offer.roomcategory.establishment.image %}<br/><img onclick="$(\'#gallery{{ offer.id }}\').modal(\'show\');" style="max-height:100px;max-width:100%;" src="{{ offer.roomcategory.establishment.image.url }}"></img>{% endif %}'],{% endfor %}
|
||||
],
|
||||
rows : [
|
||||
{
|
||||
|
@ -19,9 +19,10 @@
|
|||
},
|
||||
{
|
||||
rowVal: [
|
||||
[{% for offer in object_list %}'{% autoescape off %}{% stars offer.roomcategory.establishment.stars offer.roomcategory.establishment.superior orange %}{% endautoescape %}',{% endfor %}],
|
||||
[{% for offer in object_list %}{% autoescape off %}'{% hearts 3 red %} (304)'{% endautoescape %},{% endfor %}]
|
||||
],
|
||||
rowDesc: ["Bewertungen"]
|
||||
rowDesc: ["Sterne", "Bewertungen"]
|
||||
},
|
||||
{
|
||||
rowVal: [
|
||||
|
@ -32,7 +33,7 @@
|
|||
},
|
||||
{
|
||||
rowVal: [
|
||||
[{% for offer in object_list %}'{{ offer.comment }}',{% endfor %}]
|
||||
[{% for offer in object_list %}'{% if offer.comment %}{{ offer.comment }}{% else %} {% endif %}',{% endfor %}]
|
||||
],
|
||||
rowDesc: ["Zusätzliche Angaben"]
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue