kiwitcms/Kiwi

View on GitHub
tcms/templates/include/comments_for_object_template.html

Summary

Maintainability
Test Coverage
{% load i18n %}

<template id="comment-template">
    <div class="js-comment-container" data-comment-id="">
        <div style="display: flex; justify-content: space-between;">
            <em class="index" style="color: gray"></em>
            <strong class="user"></strong>
            <div class="date" style="color: gray"></div>
            <a class="js-comment-delete-btn hidden-print"
               href="#" title="{% trans 'Delete' %}">
                <span class="pficon-error-circle-o"></span>
            </a>
        </div>
        <div class="comment" style="overflow: auto"></div>
    </div>
</template>