24c4ccc42c9b56fadf2489d05ac99e60b8b1bd3b
parent
ffa1df774e
commit
dbc6a6ab8c
|
@ -84,8 +84,8 @@
|
||||||
<p translate="NOTIFICATION.WARNING_TEXT"></p>
|
<p translate="NOTIFICATION.WARNING_TEXT"></p>
|
||||||
</div><a href="" title="{{'NOTIFICATION.CLOSE' | translate}}" class="icon icon-delete"></a>
|
</div><a href="" title="{{'NOTIFICATION.CLOSE' | translate}}" class="icon icon-delete"></a>
|
||||||
</div>
|
</div>
|
||||||
<script src="/js/libs.js?v=1439789626917"></script>
|
<script src="/js/libs.js?v=1439792148853"></script>
|
||||||
<script src="/js/templates.js?v=1439789626917"></script>
|
<script src="/js/templates.js?v=1439792148853"></script>
|
||||||
<script src="/js/app-loader.js?v=1439789626917"></script>
|
<script src="/js/app-loader.js?v=1439792148853"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1,7 +1,7 @@
|
||||||
(function() {
|
(function() {
|
||||||
var promise, version;
|
var promise, version;
|
||||||
|
|
||||||
version = 1439789626927;
|
version = 1439792148866;
|
||||||
|
|
||||||
window.taigaConfig = {
|
window.taigaConfig = {
|
||||||
"api": "http://localhost:8000/api/v1/",
|
"api": "http://localhost:8000/api/v1/",
|
||||||
|
|
|
@ -23604,9 +23604,12 @@
|
||||||
WorkingOnDirective = function(homeService, currentUserService) {
|
WorkingOnDirective = function(homeService, currentUserService) {
|
||||||
var link;
|
var link;
|
||||||
link = function(scope, el, attrs, ctrl) {
|
link = function(scope, el, attrs, ctrl) {
|
||||||
var userId;
|
var user, userId;
|
||||||
userId = currentUserService.getUser().get("id");
|
user = currentUserService.getUser();
|
||||||
return ctrl.getWorkInProgress(userId);
|
if (user) {
|
||||||
|
userId = user.get("id");
|
||||||
|
return ctrl.getWorkInProgress(userId);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
return {
|
return {
|
||||||
controller: "WorkingOn",
|
controller: "WorkingOn",
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -84,6 +84,10 @@ $templateCache.put("wiki/editable-wiki-content.html","\n<div class=\"view-wiki-c
|
||||||
$templateCache.put("wiki/wiki-nav.html","\n<header>\n <h1 translate=\"WIKI.NAVIGATION.SECTION_NAME\"></h1>\n</header>\n<nav>\n <ul><% _.each(wikiLinks, function(link, index) { %>\n <li data-id=\"<%- index %>\" class=\"wiki-link\"><a title=\"<%- link.title %>\"><span class=\"link-title\"><%- link.title %></span><% if (deleteWikiLinkPermission) { %><span class=\"icon icon-delete\"></span><% } %></a>\n <input type=\"text\" placeholder=\"{{\'COMMON.FIELDS.NAME\' | translate}}\" value=\"<%- link.title %>\" class=\"hidden\"/>\n </li><% }) %>\n <li class=\"new hidden\">\n <input type=\"text\" placeholder=\"{{\'COMMON.FIELDS.NAME\' | translate}}\"/>\n </li>\n </ul>\n</nav><% if (addWikiLinkPermission) { %><a href=\"\" title=\"{{\'WIKI.NAVIGATION.ACTION_ADD_LINK\' | translate}}\" class=\"add-button button-gray\"><span translate=\"WIKI.NAVIGATION.ACTION_ADD_LINK\"></span></a><% } %>");
|
$templateCache.put("wiki/wiki-nav.html","\n<header>\n <h1 translate=\"WIKI.NAVIGATION.SECTION_NAME\"></h1>\n</header>\n<nav>\n <ul><% _.each(wikiLinks, function(link, index) { %>\n <li data-id=\"<%- index %>\" class=\"wiki-link\"><a title=\"<%- link.title %>\"><span class=\"link-title\"><%- link.title %></span><% if (deleteWikiLinkPermission) { %><span class=\"icon icon-delete\"></span><% } %></a>\n <input type=\"text\" placeholder=\"{{\'COMMON.FIELDS.NAME\' | translate}}\" value=\"<%- link.title %>\" class=\"hidden\"/>\n </li><% }) %>\n <li class=\"new hidden\">\n <input type=\"text\" placeholder=\"{{\'COMMON.FIELDS.NAME\' | translate}}\"/>\n </li>\n </ul>\n</nav><% if (addWikiLinkPermission) { %><a href=\"\" title=\"{{\'WIKI.NAVIGATION.ACTION_ADD_LINK\' | translate}}\" class=\"add-button button-gray\"><span translate=\"WIKI.NAVIGATION.ACTION_ADD_LINK\"></span></a><% } %>");
|
||||||
$templateCache.put("wiki/wiki-summary.html","\n<div class=\"wiki-times-edited\"><span class=\"number\"><%- totalEditions %></span><span translate=\"WIKI.SUMMARY.TIMES_EDITED\" class=\"description\"></span></div>\n<div class=\"wiki-last-modified\"><span class=\"number\"><%- lastModifiedDate %></span><span translate=\"WIKI.SUMMARY.LAST_EDIT\" class=\"description\"></span></div>\n<div class=\"wiki-username-edition\">\n <figure class=\"avatar\"><img src=\"<%- user.imgUrl %>\" alt=\"<%- user.name %>\"/></figure>\n <div class=\"wiki-user-modification\"><span translate=\"WIKI.SUMMARY.LAST_MODIFICATION\" class=\"description\"></span><span class=\"username\"><%- user.name %></span></div>\n</div>");
|
$templateCache.put("wiki/wiki-summary.html","\n<div class=\"wiki-times-edited\"><span class=\"number\"><%- totalEditions %></span><span translate=\"WIKI.SUMMARY.TIMES_EDITED\" class=\"description\"></span></div>\n<div class=\"wiki-last-modified\"><span class=\"number\"><%- lastModifiedDate %></span><span translate=\"WIKI.SUMMARY.LAST_EDIT\" class=\"description\"></span></div>\n<div class=\"wiki-username-edition\">\n <figure class=\"avatar\"><img src=\"<%- user.imgUrl %>\" alt=\"<%- user.name %>\"/></figure>\n <div class=\"wiki-user-modification\"><span translate=\"WIKI.SUMMARY.LAST_MODIFICATION\" class=\"description\"></span><span class=\"username\"><%- user.name %></span></div>\n</div>");
|
||||||
$templateCache.put("wiki/wiki.html","<!DOCTYPE html>\n<div ng-controller=\"WikiDetailController as ctrl\" ng-init=\"section=\'wiki\'\" class=\"wrapper\">\n <tg-project-menu></tg-project-menu>\n <sidebar tg-check-permission=\"view_wiki_links\" class=\"menu-secondary extrabar\">\n <section tg-wiki-nav ng-model=\"wikiLinks\" class=\"wiki-nav\"></section>\n </sidebar>\n <section class=\"main wiki\">\n <div class=\"header\">\n <h1><span tg-bo-bind=\"project.name\"></span><span translate=\"PROJECT.SECTION.WIKI\" class=\"green\"></span><span tg-bo-bind=\"wikiSlug|unslugify\" class=\"wiki-title\"></span></h1>\n </div>\n <div tg-wiki-summary ng-model=\"wiki\" ng-if=\"wiki.id\" class=\"summary wiki-summary\"></div>\n <section tg-editable-wiki-content ng-model=\"wiki\" class=\"wiki-content\"></section>\n <tg-attachments ng-model=\"wiki\" type=\"wiki_page\" ng-if=\"wiki.id\"></tg-attachments><a href=\"\" ng-click=\"ctrl.delete()\" ng-if=\"wiki.id\" title=\"{{\'WIKI.REMOVE\' | translate}}\" tg-check-permission=\"delete_wiki_page\" class=\"remove\"><span class=\"icon icon-delete\"></span><span translate=\"WIKI.REMOVE\"></span></a>\n </section>\n</div>");
|
$templateCache.put("wiki/wiki.html","<!DOCTYPE html>\n<div ng-controller=\"WikiDetailController as ctrl\" ng-init=\"section=\'wiki\'\" class=\"wrapper\">\n <tg-project-menu></tg-project-menu>\n <sidebar tg-check-permission=\"view_wiki_links\" class=\"menu-secondary extrabar\">\n <section tg-wiki-nav ng-model=\"wikiLinks\" class=\"wiki-nav\"></section>\n </sidebar>\n <section class=\"main wiki\">\n <div class=\"header\">\n <h1><span tg-bo-bind=\"project.name\"></span><span translate=\"PROJECT.SECTION.WIKI\" class=\"green\"></span><span tg-bo-bind=\"wikiSlug|unslugify\" class=\"wiki-title\"></span></h1>\n </div>\n <div tg-wiki-summary ng-model=\"wiki\" ng-if=\"wiki.id\" class=\"summary wiki-summary\"></div>\n <section tg-editable-wiki-content ng-model=\"wiki\" class=\"wiki-content\"></section>\n <tg-attachments ng-model=\"wiki\" type=\"wiki_page\" ng-if=\"wiki.id\"></tg-attachments><a href=\"\" ng-click=\"ctrl.delete()\" ng-if=\"wiki.id\" title=\"{{\'WIKI.REMOVE\' | translate}}\" tg-check-permission=\"delete_wiki_page\" class=\"remove\"><span class=\"icon icon-delete\"></span><span translate=\"WIKI.REMOVE\"></span></a>\n </section>\n</div>");
|
||||||
|
$templateCache.put("common/estimation/us-estimation-points-per-role.html","\n<ul class=\"points-per-role\">\n <li class=\"total\"><span class=\"points\"><%- totalPoints %></span><span translate=\"US.TOTAL_POINTS\" class=\"role\"></span></li><% _.each(roles, function(role) { %>\n <li data-role-id=\"<%- role.id %>\" title=\"<%- role.name %>\" class=\"total <% if(editable){ %>clickable<% } %>\"><span class=\"points\"><%- role.points %></span><span class=\"role\"><%- role.name %></span></li><% }); %>\n</ul>");
|
||||||
|
$templateCache.put("common/estimation/us-estimation-points.html","\n<ul class=\"popover pop-points-open <% if (horizontal) { %>horizontal<% }; %>\"><% _.each(points, function(point) { %>\n <li><% if (point.selected) { %><a href=\"\" title=\"<%- point.name %>\" data-point-id=\"<%- point.id %>\" data-role-id=\"<%- roleId %>\" class=\"point\"><%- point.name %></a><% } else { %><a href=\"\" title=\"<%- point.name %>\" data-point-id=\"<%- point.id %>\" data-role-id=\"<%- roleId %>\" class=\"point active\"><%- point.name %></a><% } %></li><% }); %>\n</ul>");
|
||||||
|
$templateCache.put("common/estimation/us-estimation-total.html","<a href=\"\" title=\"<%= title %>\" class=\"us-points <% if (!editable) { %>not-clickable<% } %>\"><span class=\"points-value\"><%= text %></span><% if (editable) { %><span tg-check-permission=\"modify_us\" class=\"icon icon-arrow-bottom\"></span><% } %></a>");
|
||||||
|
$templateCache.put("common/estimation/us-points-roles-popover.html","\n<ul class=\"popover pop-role\"><% _.each(roles, function(role) { %>\n <li><a href=\"\" title=\"<%- role.name %>\" data-role-id=\"<%- role.id %>\" class=\"role\"><%- role.name %> (<%- role.points %>)</a></li><% }); %>\n</ul>");
|
||||||
$templateCache.put("common/components/assigned-to.html","<% if (assignedTo) { %>\n<div class=\"user-avatar\"><img src=\"<%- assignedTo.photo %>\" alt=\"<%- assignedTo.full_name_display %>\"/></div><% } %>\n<div class=\"assigned-to\"><span translate=\"COMMON.FIELDS.ASSIGNED_TO\" class=\"assigned-title\"></span><a href=\"\" title=\"{{ \'COMMON.ASSIGNED_TO.TITLE_ACTION_EDIT_ASSIGNMENT\'|translate }}\" class=\"user-assigned <% if(isEditable){ %>editable<% }; %>\"><span class=\"assigned-name\"></span><% if (assignedTo) { %>\n <%- assignedTo.full_name_display %>\n <% } else { %>\n {{ \'COMMON.ASSIGNED_TO.NOT_ASSIGNED\'|translate }}\n <% } %>\n <% if(isEditable){ %><span class=\"icon icon-arrow-bottom\"></span><% }; %></a><% if (assignedTo!==null && isEditable) { %><a href=\"\" title=\"{{\'COMMON.ASSIGNED_TO.DELETE_ASSIGNMENT\' | translate}}\" class=\"icon icon-delete\"></a><% } %></div>");
|
$templateCache.put("common/components/assigned-to.html","<% if (assignedTo) { %>\n<div class=\"user-avatar\"><img src=\"<%- assignedTo.photo %>\" alt=\"<%- assignedTo.full_name_display %>\"/></div><% } %>\n<div class=\"assigned-to\"><span translate=\"COMMON.FIELDS.ASSIGNED_TO\" class=\"assigned-title\"></span><a href=\"\" title=\"{{ \'COMMON.ASSIGNED_TO.TITLE_ACTION_EDIT_ASSIGNMENT\'|translate }}\" class=\"user-assigned <% if(isEditable){ %>editable<% }; %>\"><span class=\"assigned-name\"></span><% if (assignedTo) { %>\n <%- assignedTo.full_name_display %>\n <% } else { %>\n {{ \'COMMON.ASSIGNED_TO.NOT_ASSIGNED\'|translate }}\n <% } %>\n <% if(isEditable){ %><span class=\"icon icon-arrow-bottom\"></span><% }; %></a><% if (assignedTo!==null && isEditable) { %><a href=\"\" title=\"{{\'COMMON.ASSIGNED_TO.DELETE_ASSIGNMENT\' | translate}}\" class=\"icon icon-delete\"></a><% } %></div>");
|
||||||
$templateCache.put("common/components/block-button.html","<a href=\"#\" class=\"button button-gray item-block\"><span translate=\"COMMON.BLOCK\"></span></a><a href=\"#\" class=\"button button-red item-unblock\"><span translate=\"COMMON.UNBLOCK\"></span></a>");
|
$templateCache.put("common/components/block-button.html","<a href=\"#\" class=\"button button-gray item-block\"><span translate=\"COMMON.BLOCK\"></span></a><a href=\"#\" class=\"button button-red item-unblock\"><span translate=\"COMMON.UNBLOCK\"></span></a>");
|
||||||
$templateCache.put("common/components/created-by.html","\n<div class=\"user-avatar\"><img src=\"<%- owner.photo %>\" alt=\"<%- owner.full_name_display %>\"/></div>\n<div class=\"created-by\"><span translate=\"COMMON.CREATED_BY\" translate-values=\"{ \'fullDisplayName\': \'<%- owner.full_name_display %>\'}\" class=\"created-title\"></span><span class=\"created-date\"><%- date %></span></div>");
|
$templateCache.put("common/components/created-by.html","\n<div class=\"user-avatar\"><img src=\"<%- owner.photo %>\" alt=\"<%- owner.full_name_display %>\"/></div>\n<div class=\"created-by\"><span translate=\"COMMON.CREATED_BY\" translate-values=\"{ \'fullDisplayName\': \'<%- owner.full_name_display %>\'}\" class=\"created-title\"></span><span class=\"created-date\"><%- date %></span></div>");
|
||||||
|
@ -98,10 +102,6 @@ $templateCache.put("common/components/main-title.html","<span class=\"project-na
|
||||||
$templateCache.put("common/components/progress-bar.html","\n<div style=\"width: <%- percentage %>%\" class=\"current-progress\"></div>");
|
$templateCache.put("common/components/progress-bar.html","\n<div style=\"width: <%- percentage %>%\" class=\"current-progress\"></div>");
|
||||||
$templateCache.put("common/components/status-display.html","<% if (is_closed) { %><span translate=\"COMMON.STATUS.CLOSED\"></span><% } else { %><span translate=\"COMMON.STATUS.OPEN\"></span><% } %><span style=\"color:<%- status.color %>\" class=\"us-detail-status\"><%- status.name %></span>");
|
$templateCache.put("common/components/status-display.html","<% if (is_closed) { %><span translate=\"COMMON.STATUS.CLOSED\"></span><% } else { %><span translate=\"COMMON.STATUS.OPEN\"></span><% } %><span style=\"color:<%- status.color %>\" class=\"us-detail-status\"><%- status.name %></span>");
|
||||||
$templateCache.put("common/components/watchers.html","<% if(isEditable){ %>\n<div class=\"watchers-header\"><span translate=\"COMMON.WATCHERS.TITLE\" class=\"title\"></span><a href=\"\" title=\"{{\'COMMON.WATCHERS.ADD\' | translate}}\" class=\"icon icon-plus add-watcher\"></a></div><% } else if(watchers.length > 0){ %>\n<div class=\"watchers-header\"><span translate=\"COMMON.WATCHERS.TITLE\" class=\"title\"></span></div><% }; %>\n<% _.each(watchers, function(watcher) { %>\n<% if(watcher) { %>\n<div class=\"watcher-single\">\n <div class=\"watcher-avatar\"><img src=\"<%- watcher.photo %>\" alt=\"<%- watcher.full_name_display %>\"/></div>\n <div class=\"watcher-name\"><span><%- watcher.full_name_display %></span><% if(isEditable){ %><a data-watcher-id=\"<%- watcher.id %>\" href=\"\" title=\"{{\'COMMON.WATCHERS.DELETE\' | translate}}\" class=\"icon icon-delete\"></a><% }; %></div>\n</div><% } %>\n<% }); %>");
|
$templateCache.put("common/components/watchers.html","<% if(isEditable){ %>\n<div class=\"watchers-header\"><span translate=\"COMMON.WATCHERS.TITLE\" class=\"title\"></span><a href=\"\" title=\"{{\'COMMON.WATCHERS.ADD\' | translate}}\" class=\"icon icon-plus add-watcher\"></a></div><% } else if(watchers.length > 0){ %>\n<div class=\"watchers-header\"><span translate=\"COMMON.WATCHERS.TITLE\" class=\"title\"></span></div><% }; %>\n<% _.each(watchers, function(watcher) { %>\n<% if(watcher) { %>\n<div class=\"watcher-single\">\n <div class=\"watcher-avatar\"><img src=\"<%- watcher.photo %>\" alt=\"<%- watcher.full_name_display %>\"/></div>\n <div class=\"watcher-name\"><span><%- watcher.full_name_display %></span><% if(isEditable){ %><a data-watcher-id=\"<%- watcher.id %>\" href=\"\" title=\"{{\'COMMON.WATCHERS.DELETE\' | translate}}\" class=\"icon icon-delete\"></a><% }; %></div>\n</div><% } %>\n<% }); %>");
|
||||||
$templateCache.put("common/estimation/us-estimation-points-per-role.html","\n<ul class=\"points-per-role\">\n <li class=\"total\"><span class=\"points\"><%- totalPoints %></span><span translate=\"US.TOTAL_POINTS\" class=\"role\"></span></li><% _.each(roles, function(role) { %>\n <li data-role-id=\"<%- role.id %>\" title=\"<%- role.name %>\" class=\"total <% if(editable){ %>clickable<% } %>\"><span class=\"points\"><%- role.points %></span><span class=\"role\"><%- role.name %></span></li><% }); %>\n</ul>");
|
|
||||||
$templateCache.put("common/estimation/us-estimation-points.html","\n<ul class=\"popover pop-points-open <% if (horizontal) { %>horizontal<% }; %>\"><% _.each(points, function(point) { %>\n <li><% if (point.selected) { %><a href=\"\" title=\"<%- point.name %>\" data-point-id=\"<%- point.id %>\" data-role-id=\"<%- roleId %>\" class=\"point\"><%- point.name %></a><% } else { %><a href=\"\" title=\"<%- point.name %>\" data-point-id=\"<%- point.id %>\" data-role-id=\"<%- roleId %>\" class=\"point active\"><%- point.name %></a><% } %></li><% }); %>\n</ul>");
|
|
||||||
$templateCache.put("common/estimation/us-estimation-total.html","<a href=\"\" title=\"<%= title %>\" class=\"us-points <% if (!editable) { %>not-clickable<% } %>\"><span class=\"points-value\"><%= text %></span><% if (editable) { %><span tg-check-permission=\"modify_us\" class=\"icon icon-arrow-bottom\"></span><% } %></a>");
|
|
||||||
$templateCache.put("common/estimation/us-points-roles-popover.html","\n<ul class=\"popover pop-role\"><% _.each(roles, function(role) { %>\n <li><a href=\"\" title=\"<%- role.name %>\" data-role-id=\"<%- role.id %>\" class=\"role\"><%- role.name %> (<%- role.points %>)</a></li><% }); %>\n</ul>");
|
|
||||||
$templateCache.put("common/lightbox/lightbox-assigned-to-users.html","<% if (selected) { %>\n<div class=\"watcher-single active\">\n <div class=\"watcher-avatar\"><a href=\"\" title=\"{{\'COMMON.ASSIGNED_TO\' | translate}}\" class=\"avatar\"><img src=\"<%- selected.photo %>\"/></a></div><a href=\"\" title=\"<%- selected.full_name_display %>\" class=\"watcher-name\"><%-selected.full_name_display %></a><a href=\"\" title=\"{{\'COMMON.ASSIGNED_TO.REMOVE_ASSIGNED\' | translate}}\" class=\"icon icon-delete remove-assigned-to\"></a>\n</div><% } %>\n<% _.each(users, function(user) { %>\n<div data-user-id=\"<%- user.id %>\" class=\"watcher-single\">\n <div class=\"watcher-avatar\"><a href=\"#\" title=\"{{\'COMMON.ASSIGNED_TO.TITLE\' | translate}}\" class=\"avatar\"><img src=\"<%- user.photo %>\"/></a></div><a href=\"\" title=\"<%- user.full_name_display %>\" class=\"watcher-name\"><%- user.full_name_display %></a>\n</div><% }) %>\n<% if (showMore) { %>\n<div ng-show=\"filteringUsers\" class=\"more-watchers\"><span translate=\"COMMON.ASSIGNED_TO.TOO_MANY\"></span></div><% } %>");
|
$templateCache.put("common/lightbox/lightbox-assigned-to-users.html","<% if (selected) { %>\n<div class=\"watcher-single active\">\n <div class=\"watcher-avatar\"><a href=\"\" title=\"{{\'COMMON.ASSIGNED_TO\' | translate}}\" class=\"avatar\"><img src=\"<%- selected.photo %>\"/></a></div><a href=\"\" title=\"<%- selected.full_name_display %>\" class=\"watcher-name\"><%-selected.full_name_display %></a><a href=\"\" title=\"{{\'COMMON.ASSIGNED_TO.REMOVE_ASSIGNED\' | translate}}\" class=\"icon icon-delete remove-assigned-to\"></a>\n</div><% } %>\n<% _.each(users, function(user) { %>\n<div data-user-id=\"<%- user.id %>\" class=\"watcher-single\">\n <div class=\"watcher-avatar\"><a href=\"#\" title=\"{{\'COMMON.ASSIGNED_TO.TITLE\' | translate}}\" class=\"avatar\"><img src=\"<%- user.photo %>\"/></a></div><a href=\"\" title=\"<%- user.full_name_display %>\" class=\"watcher-name\"><%- user.full_name_display %></a>\n</div><% }) %>\n<% if (showMore) { %>\n<div ng-show=\"filteringUsers\" class=\"more-watchers\"><span translate=\"COMMON.ASSIGNED_TO.TOO_MANY\"></span></div><% } %>");
|
||||||
$templateCache.put("common/lightbox/lightbox-assigned-to.html","<a href=\"\" title=\"close\" class=\"close\"><span class=\"icon icon-delete\"></span></a>\n<div class=\"form\">\n <h2 translate=\"LIGHTBOX.ASSIGNED_TO.SELECT\" class=\"title\"></h2>\n <fieldset>\n <input type=\"text\" data-maxlength=\"500\" placeholder=\"{{\'LIGHTBOX.ASSIGNED_TO.SEARCH\' | translate}}\" ng-model=\"usersSearch\"/>\n </fieldset>\n <div class=\"watchers\"></div>\n</div>");
|
$templateCache.put("common/lightbox/lightbox-assigned-to.html","<a href=\"\" title=\"close\" class=\"close\"><span class=\"icon icon-delete\"></span></a>\n<div class=\"form\">\n <h2 translate=\"LIGHTBOX.ASSIGNED_TO.SELECT\" class=\"title\"></h2>\n <fieldset>\n <input type=\"text\" data-maxlength=\"500\" placeholder=\"{{\'LIGHTBOX.ASSIGNED_TO.SEARCH\' | translate}}\" ng-model=\"usersSearch\"/>\n </fieldset>\n <div class=\"watchers\"></div>\n</div>");
|
||||||
$templateCache.put("common/lightbox/lightbox-block.html","<a href=\"\" title=\"{{\'COMMON.CLOSE\' | translate}}\" class=\"close\"><span class=\"icon icon-delete\"></span></a>\n<div class=\"form\">\n <h2 class=\"title\"></h2>\n <fieldset>\n <textarea ng-attr-placeholder=\"{{\'COMMON.BLOCKED_REASON\' | translate}}\" class=\"reason\"></textarea>\n </fieldset><a href=\"\" class=\"button-green\"><span translate=\"COMMON.SAVE\"></span></a>\n</div>");
|
$templateCache.put("common/lightbox/lightbox-block.html","<a href=\"\" title=\"{{\'COMMON.CLOSE\' | translate}}\" class=\"close\"><span class=\"icon icon-delete\"></span></a>\n<div class=\"form\">\n <h2 class=\"title\"></h2>\n <fieldset>\n <textarea ng-attr-placeholder=\"{{\'COMMON.BLOCKED_REASON\' | translate}}\" class=\"reason\"></textarea>\n </fieldset><a href=\"\" class=\"button-green\"><span translate=\"COMMON.SAVE\"></span></a>\n</div>");
|
||||||
|
@ -127,10 +127,10 @@ $templateCache.put("user/lightbox/lightbox-delete-account.html","<a href=\"\" ti
|
||||||
$templateCache.put("home/home.html","<!DOCTYPE html><img src=\"/images/beta.png\" title=\"{{\'COMMON.BETA\' | translate}}\" class=\"beta\">\n<div class=\"home-wrapper centered\">\n <div class=\"duty-summary\">\n <div tg-working-on></div>\n </div>\n <aside tg-home-project-list class=\"project-list\"></aside>\n</div>");
|
$templateCache.put("home/home.html","<!DOCTYPE html><img src=\"/images/beta.png\" title=\"{{\'COMMON.BETA\' | translate}}\" class=\"beta\">\n<div class=\"home-wrapper centered\">\n <div class=\"duty-summary\">\n <div tg-working-on></div>\n </div>\n <aside tg-home-project-list class=\"project-list\"></aside>\n</div>");
|
||||||
$templateCache.put("navigation-bar/navigation-bar.html","\n<nav class=\"navbar\">\n <div class=\"nav-left\"><a href=\"#\" tg-nav=\"home\" title=\"{{\'PROJECT.NAVIGATION.DASHBOARD_TITLE\' | translate}}\" class=\"logo\"><svg xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 134.2 134.3\" version=\"1.1\" preserveAspectRatio=\"xMidYMid meet\">\n <style>\n path {\n fill:#f5f5f5;\n opacity:0.7;\n }\n </style>\n <g transform=\"translate(-307.87667,-465.22863)\">\n <g class=\"bottom\">\n <path transform=\"matrix(-0.14066483,0.99005727,-0.99005727,0.14066483,0,0)\" d=\"m561.8-506.6 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.14066483,-0.99005727,0.99005727,-0.14066483,0,0)\" d=\"m-645.7 422.6 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.99005727,0.14066483,0.14066483,0.99005727,0,0)\" d=\"m266.6 451.9 42 0 0 42-42 0z\" />\n <path transform=\"matrix(-0.99005727,-0.14066483,-0.14066483,-0.99005727,0,0)\" d=\"m-350.6-535.9 42 0 0 42-42 0z\" />\n </g>\n <g class=\"top\">\n <path transform=\"matrix(-0.60061118,-0.79954125,0.60061118,-0.79954125,0,0)\" d=\"m-687.1-62.7 42 0 0 42-42 0z\" />\n <path transform=\"matrix(-0.79954125,0.60061118,-0.79954125,-0.60061118,0,0)\" d=\"m166.6-719.6 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.60061118,0.79954125,-0.60061118,0.79954125,0,0)\" d=\"m603.1-21.3 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.79954125,-0.60061118,0.79954125,0.60061118,0,0)\" d=\"m-250.7 635.8 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" d=\"m630.3 100 22.6 0 0 22.6-22.6 0z\" />\n </g>\n </g>\n</svg>\n</a>\n <!--a(-->\n <!-- href=\"#\",-->\n <!-- title=\"{{\'PROJECT.NAVIGATION.DISCOVER_TITLE\' | translate}}\",-->\n <!-- translate=\"PROJECT.NAVIGATION.DISCOVER\")--><a href=\"https://taiga.io/support/\" target=\"_blank\" title=\"{{\'PROJECT.NAVIGATION.HELP_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.HELP\"></a>\n </div>\n <div ng-if=\"vm.isAuthenticated\" class=\"nav-right\"><a tg-nav=\"home\" ng-class=\"{active: vm.active}\" title=\"{{\'PROJECT.NAVIGATION.DASHBOARD_TITLE\' | translate}}\"><svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" viewBox=\"0 0 22.009972 21.659925\" preserveAspectRatio=\"xMidYMid meet\">\n <g transform=\"translate(-448.78 -314.69)\">\n <path d=\"m448.78 314.69h5.4412v5.4995h-5.4412zM457.06 314.69 457.06 314.69h5.4412v5.4995h-5.4412zM465.35 314.69h5.4412v5.4995h-5.4412zM448.78 322.8h5.4412v5.4995h-5.4412zM457.06 322.8h5.4412v5.4995h-5.4412zM465.35 322.8h5.4412v5.4995h-5.4412zM448.78 330.85h5.4412v5.4995h-5.4412zM457.06 330.85h5.4412v5.4995h-5.4412zM465.35 330.85h5.4412v5.4995h-5.4412z\" class=\"s0\"/>\n </g>\n</svg>\n</a>\n <div ng-show=\"vm.projects.size\" tg-dropdown-project-list=\"tg-dropdown-project-list\" class=\"topnav-dropdown-wrapper\"></div>\n <!--div.topnav-dropdown-wrapper(tg-dropdown-organization-list)-->\n <div tg-dropdown-user=\"tg-dropdown-user\" class=\"topnav-dropdown-wrapper\"></div>\n </div>\n</nav>");
|
$templateCache.put("navigation-bar/navigation-bar.html","\n<nav class=\"navbar\">\n <div class=\"nav-left\"><a href=\"#\" tg-nav=\"home\" title=\"{{\'PROJECT.NAVIGATION.DASHBOARD_TITLE\' | translate}}\" class=\"logo\"><svg xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 134.2 134.3\" version=\"1.1\" preserveAspectRatio=\"xMidYMid meet\">\n <style>\n path {\n fill:#f5f5f5;\n opacity:0.7;\n }\n </style>\n <g transform=\"translate(-307.87667,-465.22863)\">\n <g class=\"bottom\">\n <path transform=\"matrix(-0.14066483,0.99005727,-0.99005727,0.14066483,0,0)\" d=\"m561.8-506.6 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.14066483,-0.99005727,0.99005727,-0.14066483,0,0)\" d=\"m-645.7 422.6 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.99005727,0.14066483,0.14066483,0.99005727,0,0)\" d=\"m266.6 451.9 42 0 0 42-42 0z\" />\n <path transform=\"matrix(-0.99005727,-0.14066483,-0.14066483,-0.99005727,0,0)\" d=\"m-350.6-535.9 42 0 0 42-42 0z\" />\n </g>\n <g class=\"top\">\n <path transform=\"matrix(-0.60061118,-0.79954125,0.60061118,-0.79954125,0,0)\" d=\"m-687.1-62.7 42 0 0 42-42 0z\" />\n <path transform=\"matrix(-0.79954125,0.60061118,-0.79954125,-0.60061118,0,0)\" d=\"m166.6-719.6 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.60061118,0.79954125,-0.60061118,0.79954125,0,0)\" d=\"m603.1-21.3 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.79954125,-0.60061118,0.79954125,0.60061118,0,0)\" d=\"m-250.7 635.8 42 0 0 42-42 0z\" />\n <path transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" d=\"m630.3 100 22.6 0 0 22.6-22.6 0z\" />\n </g>\n </g>\n</svg>\n</a>\n <!--a(-->\n <!-- href=\"#\",-->\n <!-- title=\"{{\'PROJECT.NAVIGATION.DISCOVER_TITLE\' | translate}}\",-->\n <!-- translate=\"PROJECT.NAVIGATION.DISCOVER\")--><a href=\"https://taiga.io/support/\" target=\"_blank\" title=\"{{\'PROJECT.NAVIGATION.HELP_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.HELP\"></a>\n </div>\n <div ng-if=\"vm.isAuthenticated\" class=\"nav-right\"><a tg-nav=\"home\" ng-class=\"{active: vm.active}\" title=\"{{\'PROJECT.NAVIGATION.DASHBOARD_TITLE\' | translate}}\"><svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" viewBox=\"0 0 22.009972 21.659925\" preserveAspectRatio=\"xMidYMid meet\">\n <g transform=\"translate(-448.78 -314.69)\">\n <path d=\"m448.78 314.69h5.4412v5.4995h-5.4412zM457.06 314.69 457.06 314.69h5.4412v5.4995h-5.4412zM465.35 314.69h5.4412v5.4995h-5.4412zM448.78 322.8h5.4412v5.4995h-5.4412zM457.06 322.8h5.4412v5.4995h-5.4412zM465.35 322.8h5.4412v5.4995h-5.4412zM448.78 330.85h5.4412v5.4995h-5.4412zM457.06 330.85h5.4412v5.4995h-5.4412zM465.35 330.85h5.4412v5.4995h-5.4412z\" class=\"s0\"/>\n </g>\n</svg>\n</a>\n <div ng-show=\"vm.projects.size\" tg-dropdown-project-list=\"tg-dropdown-project-list\" class=\"topnav-dropdown-wrapper\"></div>\n <!--div.topnav-dropdown-wrapper(tg-dropdown-organization-list)-->\n <div tg-dropdown-user=\"tg-dropdown-user\" class=\"topnav-dropdown-wrapper\"></div>\n </div>\n</nav>");
|
||||||
$templateCache.put("profile/profile.html","<img src=\"/images/beta.png\" title=\"{{\'COMMON.BETA\' | translate}}\" class=\"beta\"/>\n<div ng-if=\"vm.user\" class=\"profile centered\">\n <div tg-profile-bar=\"tg-profile-bar\" user=\"vm.user\" isCurrentUser=\"vm.isCurrentUser\"></div>\n <div class=\"main\">\n <div tg-profile-tabs=\"tg-profile-tabs\" class=\"timeline-wrapper\">\n <div tg-profile-tab=\"activity\" tab-title=\"{{\'USER.PROFILE.ACTIVITY_TAB\' | translate}}\" tab-icon=\"icon-timeline\" tab-active=\"tab-active\">\n <div tg-user-timeline=\"tg-user-timeline\" user=\"vm.user\" current-user=\"vm.isCurrentUser\"></div>\n </div>\n <div tab-disabled=\"{{vm.isCurrentUser}}\" tg-profile-tab=\"projects\" tab-title=\"{{\'USER.PROFILE.PROJECTS_TAB\' | translate}}\" tab-icon=\"icon-project\">\n <div tg-profile-projects=\"tg-profile-projects\" user=\"vm.user\"></div>\n </div>\n <div tg-profile-tab=\"contacts\" tab-title=\"{{\'USER.PROFILE.CONTACTS_TAB\' | translate}}\" tab-icon=\"icon-team\">\n <div tg-profile-contacts=\"tg-profile-contacts\" user=\"vm.user\"></div>\n </div>\n <!-- div(tg-profile-tab=\"favorites\", tab-title=\"{{\'USER.PROFILE.FAVORITES_TAB\' | translate}}\", tab-icon=\"icon-star-fill\")-->\n <!-- include includes/profile-favorites-->\n </div>\n <aside class=\"profile-sidebar\">\n <div ng-if=\"::vm.isCurrentUser\">\n <h4 translate=\"USER.PROFILE_SIDEBAR.TITLE\"></h4>\n <p translate=\"USER.PROFILE_SIDEBAR.DESCRIPTION\"></p><a tg-nav=\"user-settings-user-profile\" class=\"button-gray\"><span translate=\"USER.PROFILE_SIDEBAR.ADD_INFO\"></span></a>\n </div>\n <div tg-profile-hints=\"tg-profile-hints\"></div>\n </aside>\n </div>\n</div>");
|
$templateCache.put("profile/profile.html","<img src=\"/images/beta.png\" title=\"{{\'COMMON.BETA\' | translate}}\" class=\"beta\"/>\n<div ng-if=\"vm.user\" class=\"profile centered\">\n <div tg-profile-bar=\"tg-profile-bar\" user=\"vm.user\" isCurrentUser=\"vm.isCurrentUser\"></div>\n <div class=\"main\">\n <div tg-profile-tabs=\"tg-profile-tabs\" class=\"timeline-wrapper\">\n <div tg-profile-tab=\"activity\" tab-title=\"{{\'USER.PROFILE.ACTIVITY_TAB\' | translate}}\" tab-icon=\"icon-timeline\" tab-active=\"tab-active\">\n <div tg-user-timeline=\"tg-user-timeline\" user=\"vm.user\" current-user=\"vm.isCurrentUser\"></div>\n </div>\n <div tab-disabled=\"{{vm.isCurrentUser}}\" tg-profile-tab=\"projects\" tab-title=\"{{\'USER.PROFILE.PROJECTS_TAB\' | translate}}\" tab-icon=\"icon-project\">\n <div tg-profile-projects=\"tg-profile-projects\" user=\"vm.user\"></div>\n </div>\n <div tg-profile-tab=\"contacts\" tab-title=\"{{\'USER.PROFILE.CONTACTS_TAB\' | translate}}\" tab-icon=\"icon-team\">\n <div tg-profile-contacts=\"tg-profile-contacts\" user=\"vm.user\"></div>\n </div>\n <!-- div(tg-profile-tab=\"favorites\", tab-title=\"{{\'USER.PROFILE.FAVORITES_TAB\' | translate}}\", tab-icon=\"icon-star-fill\")-->\n <!-- include includes/profile-favorites-->\n </div>\n <aside class=\"profile-sidebar\">\n <div ng-if=\"::vm.isCurrentUser\">\n <h4 translate=\"USER.PROFILE_SIDEBAR.TITLE\"></h4>\n <p translate=\"USER.PROFILE_SIDEBAR.DESCRIPTION\"></p><a tg-nav=\"user-settings-user-profile\" class=\"button-gray\"><span translate=\"USER.PROFILE_SIDEBAR.ADD_INFO\"></span></a>\n </div>\n <div tg-profile-hints=\"tg-profile-hints\"></div>\n </aside>\n </div>\n</div>");
|
||||||
$templateCache.put("home/duties/duty.html","<a href=\"{{ ::vm.duty.get(\'url\') }}\" title=\"{{ ::duty.get(\'subject\') }}\"><img ng-if=\"::vm.duty.get(\'assigned_to_extra_info\')\" ng-src=\"{{ ::vm.duty.get(\'assigned_to_extra_info\').get(\'photo\') }}\" title=\"{{ ::vm.duty.get(\'assigned_to_extra_info\').get(\'full_name_display\') }}\" class=\"avatar\"/><img ng-if=\"::!vm.duty.get(\'assigned_to_extra_info\')\" src=\"/images/unnamed.png\" title=\"{{\'ACTIVITY.VALUES.UNASSIGNED\' | translate}}\" class=\"avatar\"/>\n <div class=\"duty-data\">\n <div><span class=\"duty-type\">{{ ::vm.getDutyType() }}</span><span ng-style=\"{\'color\': vm.duty.get(\'status_extra_info\').get(\'color\')}\" class=\"duty-status\">{{ ::vm.duty.get(\'status_extra_info\').get(\'name\') }}</span></div><span class=\"duty-title\"><span tg-bo-ref=\"duty.get(\'ref\')\" class=\"duty-id\"></span><span class=\"duty-name\">{{ ::duty.get(\'subject\') }}</span></span>\n </div>\n <div class=\"duty-project\">{{ ::vm.duty.get(\'projectName\')}}</div></a>");
|
|
||||||
$templateCache.put("components/project-menu/project-menu.html","\n<nav ng-if=\"vm.project\" class=\"menu\">\n <div class=\"menu-container\">\n <ul class=\"main-nav\">\n <li id=\"nav-search\"><a href=\"\" ng-class=\"{active: vm.active == \'search\'}\" title=\"{{\'PROJECT.SECTION.SEARCH\' | translate}}\" tabindex=\"1\" ng-click=\"vm.search()\"><span class=\"icon icon-search\"></span><span translate=\"PROJECT.SECTION.SEARCH\" class=\"helper\"></span></a></li>\n <li id=\"nav-timeline\"><a ng-class=\"{active: vm.active == \'project-timeline\'}\" title=\"{{\'PROJECT.SECTION.TIMELINE\' | translate}}\" tg-nav=\"project:project=vm.project.get(\'slug\')\" tabindex=\"2\"><svg xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" version=\"1.1\" height=\"24px\" width=\"24px\">\n <path d=\"m0 16.5 24 0 0-3-24 0 0 3zm0 6 24 0 0-3-24 0 0 3zm0-12 24 0 0-3-24 0 0 3zm0-9 0 3 24 0 0-3-24 0z\"/>\n</svg>\n<span translate=\"PROJECT.SECTION.TIMELINE\" class=\"helper\"></span></a></li>\n <li id=\"nav-backlog\" ng-if=\"vm.menu.get(\'backlog\')\"><a ng-class=\"{active: vm.active == \'backlog\'}\" title=\"{{\'PROJECT.SECTION.BACKLOG\' | translate}}\" tg-nav=\"project-backlog:project=vm.project.get(\'slug\')\" tabindex=\"2\"><span class=\"icon icon-backlog\"></span><span translate=\"PROJECT.SECTION.BACKLOG\" class=\"helper\"></span></a></li>\n <li id=\"nav-kanban\" ng-if=\"vm.menu.get(\'kanban\')\"><a ng-class=\"{active: vm.active == \'kanban\'}\" title=\"{{\'PROJECT.SECTION.KANBAN\' | translate}}\" tg-nav=\"project-kanban:project=vm.project.get(\'slug\')\" tabindex=\"3\"><span class=\"icon icon-kanban\"></span><span translate=\"PROJECT.SECTION.KANBAN\" class=\"helper\"></span></a></li>\n <li id=\"nav-issues\" ng-if=\"vm.menu.get(\'issues\')\"><a ng-class=\"{active: vm.active == \'issues\'}\" title=\"{{\'PROJECT.SECTION.ISSUES\' | translate}}\" tg-nav=\"project-issues:project=vm.project.get(\'slug\')\" tabindex=\"4\"><span class=\"icon icon-issues\"></span><span translate=\"PROJECT.SECTION.ISSUES\" class=\"helper\"></span></a></li>\n <li id=\"nav-wiki\" ng-if=\"vm.menu.get(\'wiki\')\"><a ng-class=\"{active: vm.active == \'wiki\'}\" title=\"{{\'PROJECT.SECTION.WIKI\' | translate}}\" tg-nav=\"project-wiki:project=vm.project.get(\'slug\')\" tabindex=\"5\"><span class=\"icon icon-wiki\"></span><span translate=\"PROJECT.SECTION.WIKI\" class=\"helper\"></span></a></li>\n <li id=\"nav-team\"><a ng-class=\"{active: vm.active == \'team\'}\" title=\"{{\'PROJECT.SECTION.TEAM\' | translate}}\" tg-nav=\"project-team:project=vm.project.get(\'slug\')\" tabindex=\"6\"><span class=\"icon icon-team\"></span><span translate=\"PROJECT.SECTION.TEAM\" class=\"helper\"></span></a></li>\n <li id=\"nav-video\" ng-if=\"vm.project.get(\'videoconferenceUrl\')\"><a ng-href=\"{{vm.project.get(\'videoconferenceUrl\')}}\" target=\"_blank\" title=\"{{\'PROJECT.SECTION.MEETUP\' | translate}}\" tabindex=\"7\"><span class=\"icon icon-video\"></span><span translate=\"PROJECT.SECTION.MEETUP\" class=\"helper\"></span></a></li>\n <li id=\"nav-admin\" ng-if=\"vm.project.get(\'i_am_owner\')\"><a ng-class=\"{active: vm.active == \'admin\'}\" tg-nav=\"project-admin-home:project=vm.project.get(\'slug\')\" title=\"{{\'PROJECT.SECTION.ADMIN\' | translate}}\" tabindex=\"8\"><span class=\"icon icon-settings\"></span><span translate=\"PROJECT.SECTION.ADMIN\" class=\"helper\"></span></a></li>\n </ul>\n </div>\n</nav>");
|
$templateCache.put("components/project-menu/project-menu.html","\n<nav ng-if=\"vm.project\" class=\"menu\">\n <div class=\"menu-container\">\n <ul class=\"main-nav\">\n <li id=\"nav-search\"><a href=\"\" ng-class=\"{active: vm.active == \'search\'}\" title=\"{{\'PROJECT.SECTION.SEARCH\' | translate}}\" tabindex=\"1\" ng-click=\"vm.search()\"><span class=\"icon icon-search\"></span><span translate=\"PROJECT.SECTION.SEARCH\" class=\"helper\"></span></a></li>\n <li id=\"nav-timeline\"><a ng-class=\"{active: vm.active == \'project-timeline\'}\" title=\"{{\'PROJECT.SECTION.TIMELINE\' | translate}}\" tg-nav=\"project:project=vm.project.get(\'slug\')\" tabindex=\"2\"><svg xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" version=\"1.1\" height=\"24px\" width=\"24px\">\n <path d=\"m0 16.5 24 0 0-3-24 0 0 3zm0 6 24 0 0-3-24 0 0 3zm0-12 24 0 0-3-24 0 0 3zm0-9 0 3 24 0 0-3-24 0z\"/>\n</svg>\n<span translate=\"PROJECT.SECTION.TIMELINE\" class=\"helper\"></span></a></li>\n <li id=\"nav-backlog\" ng-if=\"vm.menu.get(\'backlog\')\"><a ng-class=\"{active: vm.active == \'backlog\'}\" title=\"{{\'PROJECT.SECTION.BACKLOG\' | translate}}\" tg-nav=\"project-backlog:project=vm.project.get(\'slug\')\" tabindex=\"2\"><span class=\"icon icon-backlog\"></span><span translate=\"PROJECT.SECTION.BACKLOG\" class=\"helper\"></span></a></li>\n <li id=\"nav-kanban\" ng-if=\"vm.menu.get(\'kanban\')\"><a ng-class=\"{active: vm.active == \'kanban\'}\" title=\"{{\'PROJECT.SECTION.KANBAN\' | translate}}\" tg-nav=\"project-kanban:project=vm.project.get(\'slug\')\" tabindex=\"3\"><span class=\"icon icon-kanban\"></span><span translate=\"PROJECT.SECTION.KANBAN\" class=\"helper\"></span></a></li>\n <li id=\"nav-issues\" ng-if=\"vm.menu.get(\'issues\')\"><a ng-class=\"{active: vm.active == \'issues\'}\" title=\"{{\'PROJECT.SECTION.ISSUES\' | translate}}\" tg-nav=\"project-issues:project=vm.project.get(\'slug\')\" tabindex=\"4\"><span class=\"icon icon-issues\"></span><span translate=\"PROJECT.SECTION.ISSUES\" class=\"helper\"></span></a></li>\n <li id=\"nav-wiki\" ng-if=\"vm.menu.get(\'wiki\')\"><a ng-class=\"{active: vm.active == \'wiki\'}\" title=\"{{\'PROJECT.SECTION.WIKI\' | translate}}\" tg-nav=\"project-wiki:project=vm.project.get(\'slug\')\" tabindex=\"5\"><span class=\"icon icon-wiki\"></span><span translate=\"PROJECT.SECTION.WIKI\" class=\"helper\"></span></a></li>\n <li id=\"nav-team\"><a ng-class=\"{active: vm.active == \'team\'}\" title=\"{{\'PROJECT.SECTION.TEAM\' | translate}}\" tg-nav=\"project-team:project=vm.project.get(\'slug\')\" tabindex=\"6\"><span class=\"icon icon-team\"></span><span translate=\"PROJECT.SECTION.TEAM\" class=\"helper\"></span></a></li>\n <li id=\"nav-video\" ng-if=\"vm.project.get(\'videoconferenceUrl\')\"><a ng-href=\"{{vm.project.get(\'videoconferenceUrl\')}}\" target=\"_blank\" title=\"{{\'PROJECT.SECTION.MEETUP\' | translate}}\" tabindex=\"7\"><span class=\"icon icon-video\"></span><span translate=\"PROJECT.SECTION.MEETUP\" class=\"helper\"></span></a></li>\n <li id=\"nav-admin\" ng-if=\"vm.project.get(\'i_am_owner\')\"><a ng-class=\"{active: vm.active == \'admin\'}\" tg-nav=\"project-admin-home:project=vm.project.get(\'slug\')\" title=\"{{\'PROJECT.SECTION.ADMIN\' | translate}}\" tabindex=\"8\"><span class=\"icon icon-settings\"></span><span translate=\"PROJECT.SECTION.ADMIN\" class=\"helper\"></span></a></li>\n </ul>\n </div>\n</nav>");
|
||||||
$templateCache.put("home/working-on/working-on.html","\n<div ng-show=\"vm.assignedTo.size\" translate=\"HOME.WORKING_ON_SECTION\" class=\"title-bar working-on-title\"></div>\n<section ng-show=\"vm.assignedTo.size\" class=\"working-on\">\n <div tg-duty=\"duty\" tg-repeat=\"duty in vm.assignedTo\" ng-class=\"{blocked: duty.is_blocked}\" class=\"duty-single\"></div>\n</section>\n<div translate=\"HOME.WATCHING_SECTION\" class=\"title-bar watching-title\"></div>\n<section ng-show=\"!vm.watching.size\" class=\"watching-empty\"><?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<svg xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http://www.w3.org/2000/svg\" height=\"38.9mm\" width=\"46.15mm\" version=\"1.1\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" viewBox=\"0 0 163.53744 137.83166\">\n <g transform=\"translate(-380.2 -247.3)\">\n <path d=\"m418.3 247.3-10.6 7.583 18.15 25.36c-7.263 4.439-13.94 9.867-19.79 15.15-13.38 12.08-22.55 24.14-22.55 24.14l-3.282 4.311 3.64 4.013s32.55 37.09 74.69 37.09c8.514 0 16.8-1.763 24.64-4.556l17.71 24.75 10.6-7.582-93.21-130.2zm38.03 23.17c-2.47 0-4.912 0.2145-7.324 0.6089l8.889 12.44c31.54 0.7498 58.2 23.91 67.98 33.53-3.958 3.792-10.25 9.469-18.55 15.44-3.071 2.209-6.362 4.397-9.807 6.464l7.622 10.67c3.458-2.136 6.735-4.353 9.793-6.553 14.9-10.72 24.9-21.5 24.9-21.5l3.947-4.254-3.772-4.411s-35.36-42.43-83.67-42.43zm-22.72 20.61 5.5 7.685c-4.822 4.603-7.667 11.04-7.668 17.91 0.00019 13.68 11.09 24.77 24.77 24.77 4.017-0.001 7.935-0.9793 11.44-2.804l7.558 10.56c-5.565 1.704-11.18 2.716-16.63 2.716-27.08 0-51.8-20.38-61.02-28.94 3.586-4.258 9.506-10.92 17.25-17.91 5.695-5.14 12.19-10.11 18.82-13.98z\"/>\n </g>\n</svg>\n\n <p translate=\"HOME.EMPTY_WATCHING\"></p>\n</section>\n<section ng-show=\"vm.watching.size\" class=\"watching\">\n <div tg-duty=\"duty\" tg-repeat=\"duty in vm.watching\" ng-class=\"{blocked: duty.is_blocked}\" class=\"duty-single\"></div>\n</section>");
|
$templateCache.put("home/duties/duty.html","<a href=\"{{ ::vm.duty.get(\'url\') }}\" title=\"{{ ::duty.get(\'subject\') }}\"><img ng-if=\"::vm.duty.get(\'assigned_to_extra_info\')\" ng-src=\"{{ ::vm.duty.get(\'assigned_to_extra_info\').get(\'photo\') }}\" title=\"{{ ::vm.duty.get(\'assigned_to_extra_info\').get(\'full_name_display\') }}\" class=\"avatar\"/><img ng-if=\"::!vm.duty.get(\'assigned_to_extra_info\')\" src=\"/images/unnamed.png\" title=\"{{\'ACTIVITY.VALUES.UNASSIGNED\' | translate}}\" class=\"avatar\"/>\n <div class=\"duty-data\">\n <div><span class=\"duty-type\">{{ ::vm.getDutyType() }}</span><span ng-style=\"{\'color\': vm.duty.get(\'status_extra_info\').get(\'color\')}\" class=\"duty-status\">{{ ::vm.duty.get(\'status_extra_info\').get(\'name\') }}</span></div><span class=\"duty-title\"><span tg-bo-ref=\"duty.get(\'ref\')\" class=\"duty-id\"></span><span class=\"duty-name\">{{ ::duty.get(\'subject\') }}</span></span>\n </div>\n <div class=\"duty-project\">{{ ::vm.duty.get(\'projectName\')}}</div></a>");
|
||||||
$templateCache.put("home/projects/home-project-list.html","\n<ul ng-show=\"vm.projects.size\" class=\"home-project-list\">\n <li tg-bind-scope=\"tg-bind-scope\" tg-repeat=\"project in vm.projects\" class=\"home-project-list-single\"><a href=\"#\" tg-nav=\"project:project=project.get(\'slug\')\">\n <h2 class=\"home-project-list-single-title\"><span title=\"{{ ::project.get(\'name\') }}\" class=\"project-name\">{{::project.get(\'name\')}}</span><span ng-if=\"project.get(\'is_private\')\" title=\"{{\'PROJECT.PRIVATE\' | translate}}\" class=\"private\"><?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<!-- Created with Inkscape (http://www.inkscape.org/) -->\n<svg xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" viewBox=\"0 0 10.2367 12.115\">\n <g transform=\"translate(51.126 -417.22)\">\n <path class=\"lock\" d=\"m-46.008 417.22c-1.886 0-3.4167 1.5307-3.4167 3.4167v1.033h-1.2265c-0.2632 0-0.4751 0.2264-0.4751 0.5072v6.6509c0 0.2808 0.2119 0.5072 0.4751 0.5072h9.2865c0.2632 0 0.4751-0.2264 0.4751-0.5072v-6.6509c0-0.2808-0.2119-0.5072-0.4751-0.5072h-1.2265v-1.033c0-1.886-1.5307-3.4167-3.4168-3.4167zm0 1.2986c1.1686 0 2.1195 0.9496 2.1195 2.1181v1.033h-4.2375v-1.033c0-1.1685 0.9495-2.1181 2.118-2.1181z\"/>\n </g>\n</svg>\n</span></h2>\n <p>{{ ::project.get(\'description\') | limitTo:150 }}<span ng-if=\"::project.get(\'description\').size > 150\">...</span></p></a></li>\n</ul><a href=\"#\" ng-show=\"vm.projects.size\" tg-nav=\"projects\" title=\"{{\'PROJECT.NAVIGATION.SEE_MORE_PROJECTS\' | translate}}\" translate=\"PROJECT.NAVIGATION.SEE_MORE_PROJECTS\" class=\"see-more-projects-btn button-gray\"></a>\n<section ng-hide=\"vm.projects.size\" class=\"projects-empty\"><?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<!-- Created with Inkscape (http://www.inkscape.org/) -->\n<svg xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" viewBox=\"0 0 13.918466 15.58737\">\n <g transform=\"translate(35.885 -420.63)\">\n <path d=\"m-33.7 420.63-1.1367 0.86544 2.1761 2.8582h-0.1537l-0.41375 0.71665h1.1131l0.69906 0.91817h-4.4694l1.7562 6.7859h7.8797l2.6214 3.443 1.1368-0.86544-11.209-14.722zm10.832 2.7082c-0.04845-0.001-0.07702 0.003-0.07702 0.003h-3.1127l-0.58461 1.0124h-2.5114l0.54562 0.71664h5.7028l-1.4845 5.5403 0.64029 0.84099 1.6351-6.102s0.34262-1.1438-0.01538-1.6091c-0.26845-0.34893-0.59278-0.39911-0.73815-0.40239z\"/>\n </g>\n</svg>\n\n <p translate=\"HOME.EMPTY_PROJECT_LIST\"></p><a href=\"#\" ng-click=\"vm.newProject()\" title=\"{{\'PROJECT.NAVIGATION.TITLE_CREATE_PROJECT\' | translate}}\" translate=\"PROJECT.NAVIGATION.ACTION_CREATE_PROJECT\" class=\"create-project-button button-green\"></a><span tg-import-project-button=\"tg-import-project-button\"><a href=\"#\" title=\"{{\'PROJECT.NAVIGATION.TITLE_IMPORT_PROJECT\' | translate}}\" translate=\"PROJECT.NAVIGATION.ACTION_IMPORT_PROJECT\" class=\"import-project-button button-blackish\"></a>\n <input type=\"file\" class=\"import-file hidden\"/></span>\n</section>");
|
$templateCache.put("home/projects/home-project-list.html","\n<ul ng-show=\"vm.projects.size\" class=\"home-project-list\">\n <li tg-bind-scope=\"tg-bind-scope\" tg-repeat=\"project in vm.projects\" class=\"home-project-list-single\"><a href=\"#\" tg-nav=\"project:project=project.get(\'slug\')\">\n <h2 class=\"home-project-list-single-title\"><span title=\"{{ ::project.get(\'name\') }}\" class=\"project-name\">{{::project.get(\'name\')}}</span><span ng-if=\"project.get(\'is_private\')\" title=\"{{\'PROJECT.PRIVATE\' | translate}}\" class=\"private\"><?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<!-- Created with Inkscape (http://www.inkscape.org/) -->\n<svg xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" viewBox=\"0 0 10.2367 12.115\">\n <g transform=\"translate(51.126 -417.22)\">\n <path class=\"lock\" d=\"m-46.008 417.22c-1.886 0-3.4167 1.5307-3.4167 3.4167v1.033h-1.2265c-0.2632 0-0.4751 0.2264-0.4751 0.5072v6.6509c0 0.2808 0.2119 0.5072 0.4751 0.5072h9.2865c0.2632 0 0.4751-0.2264 0.4751-0.5072v-6.6509c0-0.2808-0.2119-0.5072-0.4751-0.5072h-1.2265v-1.033c0-1.886-1.5307-3.4167-3.4168-3.4167zm0 1.2986c1.1686 0 2.1195 0.9496 2.1195 2.1181v1.033h-4.2375v-1.033c0-1.1685 0.9495-2.1181 2.118-2.1181z\"/>\n </g>\n</svg>\n</span></h2>\n <p>{{ ::project.get(\'description\') | limitTo:150 }}<span ng-if=\"::project.get(\'description\').size > 150\">...</span></p></a></li>\n</ul><a href=\"#\" ng-show=\"vm.projects.size\" tg-nav=\"projects\" title=\"{{\'PROJECT.NAVIGATION.SEE_MORE_PROJECTS\' | translate}}\" translate=\"PROJECT.NAVIGATION.SEE_MORE_PROJECTS\" class=\"see-more-projects-btn button-gray\"></a>\n<section ng-hide=\"vm.projects.size\" class=\"projects-empty\"><?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<!-- Created with Inkscape (http://www.inkscape.org/) -->\n<svg xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" viewBox=\"0 0 13.918466 15.58737\">\n <g transform=\"translate(35.885 -420.63)\">\n <path d=\"m-33.7 420.63-1.1367 0.86544 2.1761 2.8582h-0.1537l-0.41375 0.71665h1.1131l0.69906 0.91817h-4.4694l1.7562 6.7859h7.8797l2.6214 3.443 1.1368-0.86544-11.209-14.722zm10.832 2.7082c-0.04845-0.001-0.07702 0.003-0.07702 0.003h-3.1127l-0.58461 1.0124h-2.5114l0.54562 0.71664h5.7028l-1.4845 5.5403 0.64029 0.84099 1.6351-6.102s0.34262-1.1438-0.01538-1.6091c-0.26845-0.34893-0.59278-0.39911-0.73815-0.40239z\"/>\n </g>\n</svg>\n\n <p translate=\"HOME.EMPTY_PROJECT_LIST\"></p><a href=\"#\" ng-click=\"vm.newProject()\" title=\"{{\'PROJECT.NAVIGATION.TITLE_CREATE_PROJECT\' | translate}}\" translate=\"PROJECT.NAVIGATION.ACTION_CREATE_PROJECT\" class=\"create-project-button button-green\"></a><span tg-import-project-button=\"tg-import-project-button\"><a href=\"#\" title=\"{{\'PROJECT.NAVIGATION.TITLE_IMPORT_PROJECT\' | translate}}\" translate=\"PROJECT.NAVIGATION.ACTION_IMPORT_PROJECT\" class=\"import-project-button button-blackish\"></a>\n <input type=\"file\" class=\"import-file hidden\"/></span>\n</section>");
|
||||||
|
$templateCache.put("home/working-on/working-on.html","\n<div ng-show=\"vm.assignedTo.size\" translate=\"HOME.WORKING_ON_SECTION\" class=\"title-bar working-on-title\"></div>\n<section ng-show=\"vm.assignedTo.size\" class=\"working-on\">\n <div tg-duty=\"duty\" tg-repeat=\"duty in vm.assignedTo\" ng-class=\"{blocked: duty.is_blocked}\" class=\"duty-single\"></div>\n</section>\n<div translate=\"HOME.WATCHING_SECTION\" class=\"title-bar watching-title\"></div>\n<section ng-show=\"!vm.watching.size\" class=\"watching-empty\"><?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<svg xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http://www.w3.org/2000/svg\" height=\"38.9mm\" width=\"46.15mm\" version=\"1.1\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" viewBox=\"0 0 163.53744 137.83166\">\n <g transform=\"translate(-380.2 -247.3)\">\n <path d=\"m418.3 247.3-10.6 7.583 18.15 25.36c-7.263 4.439-13.94 9.867-19.79 15.15-13.38 12.08-22.55 24.14-22.55 24.14l-3.282 4.311 3.64 4.013s32.55 37.09 74.69 37.09c8.514 0 16.8-1.763 24.64-4.556l17.71 24.75 10.6-7.582-93.21-130.2zm38.03 23.17c-2.47 0-4.912 0.2145-7.324 0.6089l8.889 12.44c31.54 0.7498 58.2 23.91 67.98 33.53-3.958 3.792-10.25 9.469-18.55 15.44-3.071 2.209-6.362 4.397-9.807 6.464l7.622 10.67c3.458-2.136 6.735-4.353 9.793-6.553 14.9-10.72 24.9-21.5 24.9-21.5l3.947-4.254-3.772-4.411s-35.36-42.43-83.67-42.43zm-22.72 20.61 5.5 7.685c-4.822 4.603-7.667 11.04-7.668 17.91 0.00019 13.68 11.09 24.77 24.77 24.77 4.017-0.001 7.935-0.9793 11.44-2.804l7.558 10.56c-5.565 1.704-11.18 2.716-16.63 2.716-27.08 0-51.8-20.38-61.02-28.94 3.586-4.258 9.506-10.92 17.25-17.91 5.695-5.14 12.19-10.11 18.82-13.98z\"/>\n </g>\n</svg>\n\n <p translate=\"HOME.EMPTY_WATCHING\"></p>\n</section>\n<section ng-show=\"vm.watching.size\" class=\"watching\">\n <div tg-duty=\"duty\" tg-repeat=\"duty in vm.watching\" ng-class=\"{blocked: duty.is_blocked}\" class=\"duty-single\"></div>\n</section>");
|
||||||
$templateCache.put("navigation-bar/dropdown-organization-list/dropdown-organization-list.html","\n<div id=\"TODO\">\n <fill>correctly when implemented</fill>\n</div><a href=\"#\" title=\"Organizations\"><svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20\" width=\"22.2\" version=\"1.1\" viewBox=\"0 0 22.2 20\" preserveAspectRatio=\"xMidYMid meet\">\n <g transform=\"translate(-451.01 -314.49)\">\n <path d=\"m451 314.5v20h8.7v-4.8h4.8v4.8h8.6v-20h-22.2zm2 2.1h4.8v4.8h-4.8v-4.8zm6.7 0h4.8v4.8h-4.8v-4.8zm6.7 0h4.8v4.8h-4.8v-4.8zm-13.5 6.3h4.8v4.8h-4.8v-4.8zm6.7 0h4.8v4.8h-4.8v-4.8zm6.7 0h4.8v4.8h-4.8v-4.8z\" />\n </g>\n</svg>\n</a>\n<div class=\"navbar-dropdown dropdown-organization-list\">\n <ul>\n <li><a href=\"#\" title=\"{{ project.title }}\">Organization 1</a></li>\n <li><a href=\"#\" title=\"{{ project.title }}\">Organization 1</a></li>\n <li><a href=\"#\" title=\"{{ project.title }}\">Organization 1</a></li>\n <li><a href=\"#\" title=\"{{ project.title }}\">Organization 1</a></li>\n </ul><a href=\"#\" title=\"Create Organization\" class=\"create-organization-btn button-green\">Create Organization</a>\n</div>");
|
$templateCache.put("navigation-bar/dropdown-organization-list/dropdown-organization-list.html","\n<div id=\"TODO\">\n <fill>correctly when implemented</fill>\n</div><a href=\"#\" title=\"Organizations\"><svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20\" width=\"22.2\" version=\"1.1\" viewBox=\"0 0 22.2 20\" preserveAspectRatio=\"xMidYMid meet\">\n <g transform=\"translate(-451.01 -314.49)\">\n <path d=\"m451 314.5v20h8.7v-4.8h4.8v4.8h8.6v-20h-22.2zm2 2.1h4.8v4.8h-4.8v-4.8zm6.7 0h4.8v4.8h-4.8v-4.8zm6.7 0h4.8v4.8h-4.8v-4.8zm-13.5 6.3h4.8v4.8h-4.8v-4.8zm6.7 0h4.8v4.8h-4.8v-4.8zm6.7 0h4.8v4.8h-4.8v-4.8z\" />\n </g>\n</svg>\n</a>\n<div class=\"navbar-dropdown dropdown-organization-list\">\n <ul>\n <li><a href=\"#\" title=\"{{ project.title }}\">Organization 1</a></li>\n <li><a href=\"#\" title=\"{{ project.title }}\">Organization 1</a></li>\n <li><a href=\"#\" title=\"{{ project.title }}\">Organization 1</a></li>\n <li><a href=\"#\" title=\"{{ project.title }}\">Organization 1</a></li>\n </ul><a href=\"#\" title=\"Create Organization\" class=\"create-organization-btn button-green\">Create Organization</a>\n</div>");
|
||||||
$templateCache.put("navigation-bar/dropdown-project-list/dropdown-project-list.html","<a href=\"\" title=\"Projects\" tg-nav=\"projects\"><svg xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" version=\"1.1\" viewBox=\"0 0 26.27 17.81\">\n <g transform=\"translate(-448.94 -316.58)\">\n <g transform=\"matrix(1.1133 0 0 1.1133 -624.82 369.48)\">\n <path d=\"m964.52-43.02h17.08l2.25 8.41 2.67-9.97h-17.5l0.7-1.22h10.47l0.99-1.72h5.28s0.78-0.11 1.38 0.68c0.61 0.79 0.03 2.73 0.03 2.73l-3.37 12.59h-17z\"/>\n </g>\n </g>\n</svg>\n</a>\n<div class=\"navbar-dropdown dropdown-project-list\">\n <ul><a href=\"#\" tg-repeat=\"project in vm.projects track by project.get(\'id\')\" tg-nav=\"project:project=project.get(\'slug\')\">{{::project.get(\"name\")}}</a></ul><a href=\"#\" tg-nav=\"projects\" title=\"{{\'PROJECT.NAVIGATION.SEE_MORE_PROJECTS\' | translate}}\" translate=\"PROJECT.NAVIGATION.SEE_MORE_PROJECTS\" class=\"see-more-projects-btn button-gray\"></a>\n <div class=\"create-options\"><a href=\"#\" ng-click=\"vm.newProject()\" title=\"{{\'PROJECT.NAVIGATION.ACTION_CREATE_PROJECT\' | translate}}\" translate=\"PROJECT.NAVIGATION.ACTION_CREATE_PROJECT\" class=\"create-project-btn button-green\"></a><span tg-import-project-button=\"tg-import-project-button\"><a href=\"\" title=\"{{\'PROJECT.NAVIGATION.TITLE_ACTION_IMPORT\' | translate}}\" class=\"button-blackish import-project-button\"><span class=\"icon icon-upload\"></span></a>\n <input type=\"file\" class=\"import-file hidden\"/></span></div>\n</div>");
|
$templateCache.put("navigation-bar/dropdown-project-list/dropdown-project-list.html","<a href=\"\" title=\"Projects\" tg-nav=\"projects\"><svg xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" version=\"1.1\" viewBox=\"0 0 26.27 17.81\">\n <g transform=\"translate(-448.94 -316.58)\">\n <g transform=\"matrix(1.1133 0 0 1.1133 -624.82 369.48)\">\n <path d=\"m964.52-43.02h17.08l2.25 8.41 2.67-9.97h-17.5l0.7-1.22h10.47l0.99-1.72h5.28s0.78-0.11 1.38 0.68c0.61 0.79 0.03 2.73 0.03 2.73l-3.37 12.59h-17z\"/>\n </g>\n </g>\n</svg>\n</a>\n<div class=\"navbar-dropdown dropdown-project-list\">\n <ul><a href=\"#\" tg-repeat=\"project in vm.projects track by project.get(\'id\')\" tg-nav=\"project:project=project.get(\'slug\')\">{{::project.get(\"name\")}}</a></ul><a href=\"#\" tg-nav=\"projects\" title=\"{{\'PROJECT.NAVIGATION.SEE_MORE_PROJECTS\' | translate}}\" translate=\"PROJECT.NAVIGATION.SEE_MORE_PROJECTS\" class=\"see-more-projects-btn button-gray\"></a>\n <div class=\"create-options\"><a href=\"#\" ng-click=\"vm.newProject()\" title=\"{{\'PROJECT.NAVIGATION.ACTION_CREATE_PROJECT\' | translate}}\" translate=\"PROJECT.NAVIGATION.ACTION_CREATE_PROJECT\" class=\"create-project-btn button-green\"></a><span tg-import-project-button=\"tg-import-project-button\"><a href=\"\" title=\"{{\'PROJECT.NAVIGATION.TITLE_ACTION_IMPORT\' | translate}}\" class=\"button-blackish import-project-button\"><span class=\"icon icon-upload\"></span></a>\n <input type=\"file\" class=\"import-file hidden\"/></span></div>\n</div>");
|
||||||
$templateCache.put("navigation-bar/dropdown-user/dropdown-user.html","<a tg-nav=\"profile\" title=\"{{ vm.user.get(\'full_name_display\') }}\" class=\"user-avatar\">{{ vm.user.get(\'full_name_display\') }}<img ng-src=\"{{ vm.user.get(\'photo\') }}\" alt=\"{{ vm.user.get(\'full_name_display\') }}\"/></a>\n<div class=\"navbar-dropdown dropdown-user\">\n <ul>\n <li><a tg-nav=\"profile\" title=\"{{\'PROJECT.NAVIGATION.VIEW_PROFILE_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.VIEW_PROFILE\"></a></li>\n <li><a href=\"#\" tg-nav=\"user-settings-user-profile\" title=\"{{\'PROJECT.NAVIGATION.EDIT_PROFILE_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.EDIT_PROFILE\"></a></li>\n <li><a href=\"#\" tg-nav=\"user-settings-user-change-password\" title=\"{{\'PROJECT.NAVIGATION.CHANGE_PASSWORD_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.CHANGE_PASSWORD\"></a></li>\n <!--li-->\n <!-- a(-->\n <!-- href=\"#\",-->\n <!-- title=\"{{\'PROJECT.NAVIGATION.ORGANIZATIONS_TITLE\' | translate}}\",-->\n <!-- translate=\"PROJECT.NAVIGATION.ORGANIZATIONS\")-->\n <!--li-->\n <!-- a(-->\n <!-- href=\"#\",-->\n <!-- title=\"{{\'PROJECT.NAVIGATION.SETTINGS_TITLE\' | translate}}\",-->\n <!-- translate=\"PROJECT.NAVIGATION.SETTINGS\")-->\n <li><a href=\"#\" tg-nav=\"user-settings-mail-notifications\" title=\"{{\'PROJECT.NAVIGATION.NOTIFICATIONS_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.NOTIFICATIONS\"></a></li>\n <li ng-show=\"vm.isFeedbackEnabled\"><a href=\"#\" ng-click=\"vm.sendFeedback()\" title=\"{{\'PROJECT.NAVIGATION.FEEDBACK_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.FEEDBACK\"></a></li>\n <li><a href=\"https://taiga.io/support/\" target=\"_blank\" title=\"{{\'PROJECT.NAVIGATION.HELP_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.HELP\"></a></li>\n <li><a href=\"#\" ng-click=\"vm.logout()\" title=\"{{\'COMMON.LOGOUT\' | translate}}\" translate=\"COMMON.LOGOUT\"></a></li>\n </ul>\n</div>");
|
$templateCache.put("navigation-bar/dropdown-user/dropdown-user.html","<a tg-nav=\"profile\" title=\"{{ vm.user.get(\'full_name_display\') }}\" class=\"user-avatar\">{{ vm.user.get(\'full_name_display\') }}<img ng-src=\"{{ vm.user.get(\'photo\') }}\" alt=\"{{ vm.user.get(\'full_name_display\') }}\"/></a>\n<div class=\"navbar-dropdown dropdown-user\">\n <ul>\n <li><a tg-nav=\"profile\" title=\"{{\'PROJECT.NAVIGATION.VIEW_PROFILE_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.VIEW_PROFILE\"></a></li>\n <li><a href=\"#\" tg-nav=\"user-settings-user-profile\" title=\"{{\'PROJECT.NAVIGATION.EDIT_PROFILE_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.EDIT_PROFILE\"></a></li>\n <li><a href=\"#\" tg-nav=\"user-settings-user-change-password\" title=\"{{\'PROJECT.NAVIGATION.CHANGE_PASSWORD_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.CHANGE_PASSWORD\"></a></li>\n <!--li-->\n <!-- a(-->\n <!-- href=\"#\",-->\n <!-- title=\"{{\'PROJECT.NAVIGATION.ORGANIZATIONS_TITLE\' | translate}}\",-->\n <!-- translate=\"PROJECT.NAVIGATION.ORGANIZATIONS\")-->\n <!--li-->\n <!-- a(-->\n <!-- href=\"#\",-->\n <!-- title=\"{{\'PROJECT.NAVIGATION.SETTINGS_TITLE\' | translate}}\",-->\n <!-- translate=\"PROJECT.NAVIGATION.SETTINGS\")-->\n <li><a href=\"#\" tg-nav=\"user-settings-mail-notifications\" title=\"{{\'PROJECT.NAVIGATION.NOTIFICATIONS_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.NOTIFICATIONS\"></a></li>\n <li ng-show=\"vm.isFeedbackEnabled\"><a href=\"#\" ng-click=\"vm.sendFeedback()\" title=\"{{\'PROJECT.NAVIGATION.FEEDBACK_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.FEEDBACK\"></a></li>\n <li><a href=\"https://taiga.io/support/\" target=\"_blank\" title=\"{{\'PROJECT.NAVIGATION.HELP_TITLE\' | translate}}\" translate=\"PROJECT.NAVIGATION.HELP\"></a></li>\n <li><a href=\"#\" ng-click=\"vm.logout()\" title=\"{{\'COMMON.LOGOUT\' | translate}}\" translate=\"COMMON.LOGOUT\"></a></li>\n </ul>\n</div>");
|
||||||
|
|
Loading…
Reference in New Issue