This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/client/res/templates/stream.tpl
T
Yuri Kuznetsov ca4f787131 theme fix
2022-08-04 19:47:50 +03:00

35 lines
1.2 KiB
Smarty

<div class="page-header">
<div class="row">
<div class="col-sm-7 col-xs-5">
{{#if displayTitle}}
<h3>{{translate 'Stream'}}</h3>
{{/if}}
</div>
<div class="col-sm-5 col-xs-7">
<div class="pull-right btn-group">
{{#each filterList}}
<button
class="btn btn-text{{#ifEqual this ../filter}} active{{/ifEqual}}"
data-action="selectFilter"
data-name="{{./this}}"
>{{translate this scope='Note' category='filters'}}</button>
{{/each}}
<button
class="btn btn-text btn-icon btn-icon-wide"
data-action="refresh"
title="{{translate 'checkForNewNotes' category='messages'}}"
><span class="fas fa-sync-alt"></span></button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="create-post-container">
{{{createPost}}}
</div>
<div class="list-container list-container-panel">{{{list}}}</div>
</div>
</div>