Custom dashboard view

Created: 2017-02-06
Last updated: 2018-08-03

Post view count: 1812

Sugester allows to configurate content in Dashboard, the default website after login. In Dashboard settings (Settings > Account settings > Advanced > Dashboard settings) you can input your own HTML code to change default content (activity list and tasks/emails list). 

Below you have template HTML code, which will add a button to clients' list and company's logo (in this case Sugester's logo, you can exchange it to yours).

<style>
#wrapper #page-wrapper {
    background: #fff url("https://s3-eu-west-1.amazonaws.com/cdn1.sugester.com/s/sugester/files/press/logo-sugester-poziomo.png") no-repeat scroll 50% 50%;
}
</style>

<div style="width:30%; margin:auto">
    <br>
    <br>
    <br>
    <br>
    <a class="btn btn-lg btn-primary btn-block" href="/app/projects">
        <i class="fa fa-line-chart m-r-sm"></i>
        <span>Clients list</span>
    </a>
</div>



<a> element, which is used for creating a new button, you can duplicate and link it to other features in the system.

Content in dashboard can be static, like in example above, or dynamic. If you want dynamic content from system data in your dashboard - please contact us.


Back


Add Comment