Skip to content

Commit

Permalink
updated dashboard - really basic
Browse files Browse the repository at this point in the history
minor email content changes

Signed-off-by: Trey <[email protected]>
  • Loading branch information
TreyWW committed Oct 2, 2024
1 parent 70c03eb commit d10d9ce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/service/teams/create_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ def create_user_service(

send_email(
destination=email,
subject="MyFinances | You have been invited to join an organization",
subject="You have been invited to join an organization",
content=dedent(
f"""
Hi {user.first_name or "User"},
You have been invited by {request.user.email} to join the organization {team.name}.
You have been invited by {request.user.email} to join the organization '{team.name}'.
Your account email is: {email}
Your temporary password is: {temporary_password}
Expand Down
8 changes: 7 additions & 1 deletion frontend/templates/pages/dashboard.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{% extends base|default:"base/base.html" %}
{% block content %}
dashboard
<div class="mx-auto w-full shadow-xl card bg-base-100">
<div class="card-body">
<h2 class="card-title">Get started with MyFinances</h2>
<a class="text-primary hover:text-secondary"
href="https://docs.myfinances.cloud/user-guide/">View documentation <i class="fa fa-arrow-right"></i></a>
</div>
</div>
{% endblock content %}

0 comments on commit d10d9ce

Please sign in to comment.