open-orchestra/open-orchestra-cms-bundle

View on GitHub
BackofficeBundle/Resources/public/template/Content/summaryElementView._tpl.html

Summary

Maintainability
Test Coverage
<div class="col-lg-6 col-sm-12">
    <div class="block">
        <span><%- name %></span>
        <ul class="action-links">
            <li>
                <a href="#<%- Backbone.history.generateUrl('listContent', {contentTypeId: contentTypeId, language: language, contentTypeName: name}) %>">
                    <%- Translator.trans('open_orchestra_backoffice.table.contents.list') %>
                </a>
            </li>
            <% if (can_create) { %>
                <li>
                    <a href="#<%- Backbone.history.generateUrl('newContent', {contentTypeId: contentTypeId, language: language}) %>">
                        <%- Translator.trans('open_orchestra_backoffice.table.contents.add') %>
                    </a>
                </li>
            <% } %>
        </ul>
    </div>
</div>