Skip to content

Commit

Permalink
Adding a getting started button to the site header.
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianwebb committed May 31, 2024
1 parent bc29c4f commit 09fe102
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.29
0.1.30
7 changes: 5 additions & 2 deletions app/templates/components/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% include 'components/announcement.html' %}
<div class="container py-3 pr-4">
<div class="row">
<div class="col">
<div class="col-md p-3">
<div class="d-flex">
<div class="flex-shrink-1 d-block d-md-none">
<a href="javascript: return false;" id="btn-menu"><span class="invisible">Menu</span></a>
Expand All @@ -17,7 +17,7 @@ <h2 class="m-0 py-0 px-4">Knowledge Explorer</h2>
</div>
{% is_business_team_member request.user as business_team_member %}
{% if business_team_member %}
<div class="col">
<div class="col-md p-3">
{% with active_team=request.user.settings.active_team %}
{% user_member_teams request.user as current_user_member_teams %}
<div class="d-md-flex justify-content-end align-items-center">
Expand All @@ -37,6 +37,9 @@ <h2 class="m-0 py-0 px-4">Knowledge Explorer</h2>
{% endwith %}
</div>
{% endif %}
<div class="col-md-2 p-3">
<a href="{% url 'landing:start' %}" class="btn btn-success w-100">Getting Started</a>
</div>
</div>
</div>
</header>
Expand Down

0 comments on commit 09fe102

Please sign in to comment.