Skip to content

Commit

Permalink
fix feature tours nav and colours on editor/associate dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-jones committed Aug 17, 2023
1 parent 69a38a5 commit db34d7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions portality/templates/dashboard/_todo.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
constants.TODO_EDITOR_STALLED: {
"text" : "<strong>Stalled</strong> <span class='todo-list__status'>Chase Associate Editor</span>",
"show_status": true,
"colour" : "var(--yellow)",
"colour" : "var(--salmon)",
"feather": "inbox",
},
constants.TODO_EDITOR_FOLLOW_UP_OLD: {
Expand All @@ -43,7 +43,7 @@
},
constants.TODO_EDITOR_COMPLETED: {
"text" : "<strong>Completed</strong> <span class='todo-list__status'>Review and set to Ready</span>",
"colour" : "var(--yellow)",
"colour" : "var(--mid-green)",
"feather": "inbox",
"link" : url_for('editor.group_suggestions') + "?source=" + search_query_source(term=[{"admin.application_status.exact":"completed"}])
},
Expand All @@ -56,7 +56,7 @@
constants.TODO_ASSOCIATE_PROGRESS_STALLED: {
"text" : "<strong>Stalled</strong> <span class='todo-list__status'>Complete as soon as possible</span>",
"show_status": true,
"colour" : "var(--yellow)",
"colour" : "var(--salmon)",
"feather": "inbox",
},
constants.TODO_ASSOCIATE_FOLLOW_UP_OLD: {
Expand Down
4 changes: 2 additions & 2 deletions portality/templates/includes/_tourist_nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

{% if tours|length > 0 %}
<li class="dropdown flex-center">
<a href="/dashboard/notifications" id="feature_tour_nav" class="dropdown__trigger label" role="button" aria-haspopup="true" aria-expanded="false">
<span id="feature_tour_nav" class="dropdown__trigger label" role="button" aria-haspopup="true" aria-expanded="false">
<span><span data-feather="navigation" aria-hidden="true"></span> Feature Tours</span>
</a>
</span>
<ul class="dropdown__menu notifications" id="feature_tours">
{% for tour in tours %}
{% set seen = namespace(val="[new] ") %}
Expand Down

0 comments on commit db34d7d

Please sign in to comment.