TN

Доставка задач и установка простого приоритета: высокий, средний, низкий

Регулярная доставка задач в чат (12 / 5)
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<style>

body {background: #ffffff;
color: #333333;
font-size: 16px;
font-family: 'Avenir',Arial,sans-serif;
line-height: 1.55;
font-weight: 400;
}

div.tabscontainer{
max-width:1100px;
margin:0 auto;
}

div.tabscontainer div.tabs{
list-style: none;
width: 380px;
cursor: pointer;
float:left;
left: 0px;
z-index: 2;
margin-top:3px;
line-height: 1.55;
}

div.tabscontainer div.tabs .tab{
margin-left:37px;
line-height: 1.55;
width: 320px;
}

div.tabscontainer div.tabs h2{
color: #333333;
font-size: 20px;
font-family: 'Avenir',Arial,sans-serif;
line-height: 1.55;
margin-bottom:10px;
margin-top:20px;
font-weight: 700;
}

div.tabscontainer div.tabs h2:first-of-type{margin-top:0px;}

div.tabscontainer div.curvedContainer .tabcontent h3{
color: #333333;
font-size: 30px;
font-family: 'Avenir',Arial,sans-serif;
line-height: 1.4;
font-weight: 600;
margin-bottom: 28px;
}

div.tabscontainer div.tabs .point_orange{
display:inline-block;
width:14px;
height:14px;
margin-right:13px;
border-radius: 3000px;
background-color: #e66a47;
}


.tabcontent .point_orange {
position: absolute;
margin-top: 7px;
width:12px;
height:12px;
border-radius: 3000px;
background-color: #e66a47;
}

div.tabscontainer div.curvedContainer .tabcontent ul ul li {
margin-left: 25px;
}


div.tabscontainer div.curvedContainer .tabcontent ul ul {
padding-left: 0px!important;
}

div.tabscontainer div.curvedContainer .tabcontent ul .orange_circle {
display: inline-block;
vertical-align: middle;
width:18px;
height:18px;
border-width: 2px;
border-radius: 5000px;
background-color: #ffffff;
border-color: #e66a47;
border-style: solid;
margin-top: 1px;
position:absolute;
}


div.tabscontainer div.curvedContainer .tabcontent ul li{
list-style-type:none;
margin-bottom: 17px;
margin-left:40px;
}

div.tabscontainer div.curvedContainer .tabcontent ul {
padding-left:10px!important;
}

div.tabscontainer div.curvedContainer .tabcontent ul ul{margin-top:15px;}


div.tabscontainer div.curvedContainer{
margin-left: 420px;
min-height:420px;
}

div.tabscontainer div.curvedContainer .tabcontent{
display:none;
padding:20px;
padding-top:0px;
color: #515253;
font-size: 16px;
font-family: 'Avenir',Arial,sans-serif;
line-height: 1.45;
font-weight: 400;
}

div.tabs div.tab{
display: block;
position: relative;
color: #515253;
font-size: 16px;
font-family: 'Avenir',Arial,sans-serif;
line-height: 1.35;
font-weight: 400;
}

div.tabs div.link{
padding:14px;
font-size: 16px;
padding-left:17px;
}

div.tabs div.tab.selected{
background: #f0f0f0;
border-radius:5px;
color:#333;
}
sup {color:#999;}

sup.first_one {color:#e66a47;}

.tabcontent img {
padding: 7px!important;
/*width: 20%;*/
width:41%;
display: inline-block;
max-width:577px;
}

div.images {position:absolute;
}

div.images img:nth-child(1){margin-top: 5px!important; padding-right:0!important;}
div.images img:nth-child(3){display:block!important;padding-top:0px!important;}

.tabcontent p+div, .tabcontent p+p {margin-top: 17px;}

.tabcontent p+ul {margin-top: 17px;}

@media only screen and (min-width:960px) and (max-width:1200px){
div.tabscontainer{
padding: 0 50px;}

.tabcontent img {
width:41%;
}
}
</style>
<script language="JavaScript">
$(document).ready(function() {

$(".tabs .tab[id^=tab_menu]").hover(function() {
var curMenu=$(this);
$(".tabs .tab[id^=tab_menu]").removeClass("selected");
curMenu.addClass("selected");

var index=curMenu.attr("id").split("tab_menu_")[1];
$(".curvedContainer .tabcontent").css("display","none");
$(".curvedContainer #tab_content_"+index).css("display","block");
});
});
</script>
</head>
<body>

<div class="tabscontainer">
<div class="tabs">
<h2><span class="point_orange"></span>Daily deliver your task to the chat (3)</h2>
<div class="tab selected first" id="tab_menu_1">
<div class="link">1. Deliver your task list prioritized according to the Eisenhower Matrix (by importance and urgency) <sup class="first_one">ready to use</sup></div>
</div>
<div class="tab" id="tab_menu_2">
<div class="link">2. Deliver your task list prioritized by complexity and duration <sup>demo</sup></div>
</div>
<div class="tab" id="tab_menu_3">
<div class="link">3. Deliver your task list prioritized by high, medium, and low priority levels <sup>demo</sup></div>
</div>
<h2><span class="point_orange"></span>Progress reporting (2)</h2>
<div class="tab" id="tab_menu_4">
<div class="link">4. Review tasks, mark what was completed, make note of challenges <sup>demo</sup></div>
</div>
<div class="tab" id="tab_menu_5">
<div class="link">5. Deliver a report on completed tasks in the specified time period <sup>demo</sup></div>
</div>
<h2><span class="point_orange"></span>Receive notifications about tasks (2)</h2>
<div class="tab" id="tab_menu_6">
<div class="link">6. Get notified when a task is marked<br />as complete <sup>demo</sup></div>
</div>
<div class="tab" id="tab_menu_7">
<div class="link">7. Get notified when a task has been assigned to you <sup>demo</sup></div>
</div>
<h2><span class="point_orange"></span>Team management (2)</h2>
<div class="tab" id="tab_menu_8">
<div class="link">8. Review work done by your team <sup>demo</sup></div>
</div>
<div class="tab" id="tab_menu_9">
<div class="link">9. Set priorities for your team <sup>demo</sup></div>
</div>
</div>
<div class="curvedContainer">
<div class="tabcontent" id="tab_content_1" style="display:block">
<h3>Daily tasks delivered straight to your group work chat!</h3>
<ul>
<span class="orange_circle"></span><li>Pull tasks from your task manager, categorize them by priority level, and get them delivered straight to your team’s group chat!</li>
<span class="orange_circle"></span><li>Manage your time efficiently. Focus on the most important things. </li>
</ul>
<div class="images">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild6366-3065-4237-a431-383735393335/1.png" imgfield="tn_img_1655185167725" src="https://thumb.tildacdn.com/tild6366-3065-4237-a431-383735393335/-/resize/577x/-/format/webp/1.png">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild6165-3366-4361-b730-373833636137/11_.png" imgfield="tn_img_1655185187481" src="https://thumb.tildacdn.com/tild6165-3366-4361-b730-373833636137/-/resize/577x/-/format/webp/11_.png">
<!--<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild6661-6136-4832-a335-646135333531/111.png" imgfield="tn_img_1655185361611" src="https://thumb.tildacdn.com/tild6661-6136-4832-a335-646135333531/-/resize/577x/-/format/webp/111.png">-->
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3465-6565-4838-a233-306665313539/111_.png" imgfield="tn_img_1655198046224" src="https://thumb.tildacdn.com/tild3465-6565-4838-a233-306665313539/-/resize/577x/-/format/webp/111_.png">
</div>
</div>
<div class="tabcontent" id="tab_content_2">
<h3>Prepare your work schedule by assigning your tasks to the following categories:</h3>
<ul>
<span class="orange_circle"></span><li>quick tasks (up to 20 minutes)</li>
<span class="orange_circle"></span><li>big tasks:
<ul>
<span class="point_orange"></span><li>routine & simple</li>
<span class="point_orange"></span><li>complex</li>
<span class="point_orange"></span><li>new or unusual</li>
</ul>
</li>
<span class="orange_circle"></span><li>a team effort</li>
<span class="orange_circle"></span><li>delegate</li>
<span class="orange_circle"></span><li>postpon</li>
<span class="orange_circle"></span><li>complete</li>
</ul>
<div class="images">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3665-6437-4334-b165-383336356163/2.png" imgfield="tn_img_1655186053085" src="https://thumb.tildacdn.com/tild3665-6437-4334-b165-383336356163/-/resize/577x/-/format/webp/2.png">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3965-6236-4066-a263-363331643462/22.png" imgfield="tn_img_1655186062511" src="https://thumb.tildacdn.com/tild3965-6236-4066-a263-363331643462/-/resize/577x/-/format/webp/22.png">
</div>
</div>
<div class="tabcontent" id="tab_content_3">
<h3>Categorize your tasks with simple high, medium, and low priority levels, according to their importance.</h3>
<p>The assigned priority level will be saved as a tag in your task manager.</p>
<div class="images">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3432-3263-4366-a133-363732663439/3.png" imgfield="tn_img_1655186199257" src="https://thumb.tildacdn.com/tild3432-3263-4366-a133-363732663439/-/resize/577x/-/format/webp/3.png">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3837-6230-4134-b265-373735646231/33.png" imgfield="tn_img_1655186206667" src="https://thumb.tildacdn.com/tild3837-6230-4134-b265-373735646231/-/resize/577x/-/format/webp/33.png">
</div>
</div>
<div class="tabcontent" id="tab_content_4">
<h3>End-of-day review: updating task progress, identifying difficulties</h3>
<p>Manage your daily progress with a status-check for each task, and identify any difficulties encountered during the day.</p>
<p>Mark each task in this list with one of the following:</p>
<ul>
<span class="orange_circle"></span><li>Completed</li>
<span class="orange_circle"></span><li>Worked on
<ul>
<span class="point_orange"></span><li>Moving forward</li>
<span class="point_orange"></span><li>Moving backward</li>
<span class="point_orange"></span><li>Stalled</li>
</ul>
</li>
<span class="orange_circle"></span><li>Skip</li>
</ul>
<p>Based on your input, Tasks Ninja will generate a report and send it to your group work chat, including tasks completed today.</p>
<div class="images">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3565-3131-4436-b463-316663636561/4.png" imgfield="tn_img_1655204988639" src="https://thumb.tildacdn.com/tild3565-3131-4436-b463-316663636561/-/resize/577x/-/format/webp/4.png">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild6334-3332-4532-b534-343066643165/44.png" imgfield="tn_img_1655204988647" src="https://thumb.tildacdn.com/tild6334-3332-4532-b534-343066643165/-/resize/577x/-/format/webp/44.png">
</div>
</div>
<div class="tabcontent" id="tab_content_5">
<h3>Report of completed tasks</h3>
<p>Tasks Ninja allows you to evaluate your work with reports on completed tasks from selected time-frames (today, this week, this month), sent straight to your group work chat.</p>
<div class="images">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3664-3363-4337-b432-326136623261/5.png" imgfield="tn_img_1655205406279" src="https://thumb.tildacdn.com/tild3664-3363-4337-b432-326136623261/-/format/webp/5.png">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3139-3831-4164-b937-383262633330/55.png" imgfield="tn_img_1655205406286" src="https://thumb.tildacdn.com/tild3139-3831-4164-b937-383262633330/-/format/webp/55.png">
</div>
</div>
<div class="tabcontent" id="tab_content_6">
<h3>Task completion</h3>
<p>Tasks Ninja will send notifications to your group work chat when tasks have been completed, updating your team about the progress of their work.</p>
<p>A notification will be sent when a task is marked as complete, either in Tasks Ninja or in your task manager itself.</p>
<p>Tasks Ninja recommends creating a separate group chat for these notifications. A <em>Completed Tasks</em> group chat will motivate your team by showing them the results of their hard work.</p>

</div>
<div class="tabcontent" id="tab_content_7">
<h3>Task assignment</h3>
<p>Notifications will be delivered to your group work chat when a task has been assigned to you.</p>

</div>
<div class="tabcontent" id="tab_content_8">
<h3>Review completed tasks</h3>
<p>Tasks Ninja gives managers control over the approval process.</p>
<p>Review tasks done by your team, choose whether to accept, reject, or return their work for revision. You will then be able to give feedback to the person responsible for each task.</p>
<p>How it works:</p>
<p>Mark tasks with the following:</p>
<ul>
<span class="orange_circle"></span><li>approve</li>
<span class="orange_circle"></span><li>return for revision</li>
<span class="orange_circle"></span><li>reject</li>
</ul>
<p>Also</p>
<ul>
<span class="orange_circle"></span><li>remind me later</li>
<span class="orange_circle"></span><li>see task list</li>
</ul>
<div class="images">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3061-6436-4635-b338-643565336235/8.png" imgfield="tn_img_1655290664880" src="https://thumb.tildacdn.com/tild3061-6436-4635-b338-643565336235/-/format/webp/8.png">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3537-6136-4431-b732-626265333632/88.png" imgfield="tn_img_1655290664886" src="https://thumb.tildacdn.com/tild3537-6136-4431-b732-626265333632/-/format/webp/88.png">
</div>
</div>
<div class="tabcontent" id="tab_content_9">
<h3>Manage tasks for your team</h3>
<p>Tasks Ninja helps managers to organize tasks for their team.</p>
<p>Tasks will be delivered to the people responsible for carrying them out, marked with the manager’s priority indicators.</p>
<p>They will be marked by the following:</p>
<ul>
<span class="orange_circle"></span><li>Super-urgent</li>
<span class="orange_circle"></span><li>First priority</li>
<span class="orange_circle"></span><li>Second priority</li>
<span class="orange_circle"></span><li>Low priority</li>
<span class="orange_circle"></span><li>Postpone</li>
<span class="orange_circle"></span><li>Completed</li>
</ul>
<p>Priority levels will also be indicated in your task manager.</p>
<div class="images">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3939-3163-4465-b661-386632333261/9.png" imgfield="tn_img_1655290692015" src="https://thumb.tildacdn.com/tild3939-3163-4465-b661-386632333261/-/format/webp/9.png">
<img class="tn-atom__img t-img loaded" data-original="https://static.tildacdn.com/tild3861-3666-4466-b166-306639366439/99.png" imgfield="tn_img_1655290692036" src="https://thumb.tildacdn.com/tild3861-3666-4466-b166-306639366439/-/format/webp/99.png">
</div>
</div>
</div>
</div>

</body>
</html>