Skip to content

Commit f67bd73

Browse files
feat(nimbus): Update the welcome message on feature page (#14252)
Because - We don't need the welcome header on the feature page the same way as we do the home page. This commit - Removes the card and update the information header Fixes #14026
1 parent dce060c commit f67bd73

File tree

1 file changed

+23
-2
lines changed
  • experimenter/experimenter/nimbus_ui/templates/nimbus_experiments

1 file changed

+23
-2
lines changed

experimenter/experimenter/nimbus_ui/templates/nimbus_experiments/features.html

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,29 @@
77
{% block content %}
88
<div id="feature-page" class="bg-body-tertiary py-4">
99
<div class="container">
10-
{% include "nimbus_experiments/heading_card.html" with page_name="feature" heading_text="Welcome to your Feature Health Dashboard," subheading_text="Track a feature's Nimbus history and QA status in this summary view!" link_url=NimbusUIConstants.FEATURE_PAGE_LINKS.feature_learn_more_url btn_text="Learn More" %}
11-
10+
<!-- Feature Health Dashboard Header -->
11+
<div class="mb-4">
12+
<div class="d-flex align-items-center justify-content-between">
13+
<div class="d-flex align-items-center">
14+
<img src="{% static 'assets/welcome.svg' %}"
15+
alt="Hugging Foxes"
16+
style="width: 60px;
17+
height: auto"
18+
class="me-3" />
19+
<div>
20+
<h2 class="fw-semibold mb-1">Feature Health Dashboard</h2>
21+
<p class="text-muted mb-0">Track a feature's Nimbus history and QA status in this summary view.</p>
22+
</div>
23+
</div>
24+
<a href="{{ NimbusUIConstants.FEATURE_PAGE_LINKS.feature_learn_more_url }}"
25+
class="btn btn-outline-primary btn-sm"
26+
target="_blank"
27+
rel="noopener noreferrer">
28+
<i class="fa-solid fa-circle-info me-1"></i>
29+
Learn More
30+
</a>
31+
</div>
32+
</div>
1233
<form id="features-form"
1334
method="get"
1435
hx-get="{% url 'nimbus-ui-features' %}{% if request.GET.show_errors == 'true' %}?show_errors=true{% endif %}"

0 commit comments

Comments
 (0)