Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Whatsapp text Integration text & Footer year text #478

Merged
merged 3 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recipes/VideoBots.py
Original file line number Diff line number Diff line change
Expand Up @@ -1569,7 +1569,7 @@ class ConnectChoice(typing.NamedTuple):
ConnectChoice(
platform=Platform.WHATSAPP,
img="https://storage.googleapis.com/dara-c1b52.appspot.com/daras_ai/media/1e49ad50-d6c9-11ee-99c3-02420a000123/thumbs/Digital_Inline_Green_400x400.png",
label="Bring your own WhatsApp number to connect. Need a new one? Email [[email protected]](mailto:sales@gooey.ai) for help.",
label="Connect your own new mobile # (that's not already on WhatsApp) or [upgrade to Business](https://gooey.ai/pricing) for a number on us.",
),
ConnectChoice(
platform=Platform.SLACK,
Expand Down
1 change: 1 addition & 0 deletions routers/root.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,7 @@ def page_wrapper(request: Request, className=""):
with gui.div(id="main-content", className="container-xxl " + className):
yield

context["current_year"] = datetime.datetime.now().year
anish-work marked this conversation as resolved.
Show resolved Hide resolved
gui.html(templates.get_template("footer.html").render(**context))
gui.html(templates.get_template("login_scripts.html").render(**context))

Expand Down
2 changes: 1 addition & 1 deletion templates/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h6 class="mb-2">{{ col_name }}</h6>
<span
class="text-muted gui-html-container gui-md-container"
style="font-size: 0.9rem"
><p>©2023 by Gooey.AI / Dara.network Inc</p>
><p>©{{ current_year if current_year is defined else 2024 }} by Gooey.AI / Dara.network Inc</p>
anish-work marked this conversation as resolved.
Show resolved Hide resolved
</span>
</div>

Expand Down
Loading