added logic

This commit is contained in:
Kostiantyn Stoliarskyi 2023-05-18 16:26:35 +03:00
parent 0329845dd1
commit d9633c7884
1 changed files with 9 additions and 1 deletions

View File

@ -277,7 +277,15 @@
{% endfor %}
{% else %}
{% for section in collection.active_sections %}
<p>{{section.label}}</p>
<a href="{{url_for('book.section_view',book_id=book.id,collection_id=collection.id)}}">
<p class="truncate mb-3">{{ section.label }}</p></a>
<p class="text-sm mb-3">{{section.approved_interpretation}}</p>
<div class="flex w-full ml-auto align-center justify-between space-x-3 border-t py-3">
<span class="text-sm">Interpretation by {{section.approved_interpretation.user.username}} on {{section.approved_interpretation.created_at.strftime('%B %d, %Y')}}</span>
<span class="space-x-0.5 flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M9 8.25H7.5a2.25 2.25 0 00-2.25 2.25v9a2.25 2.25 0 002.25 2.25h9a2.25 2.25 0 002.25-2.25v-9a2.25 2.25 0 00-2.25-2.25H15m0-3l-3-3m0 0l-3 3m3-3V15" /> </svg>
</span>
</div>
{% endfor %}
{% endif %}
{% endfor %}