You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
5.9 KiB
112 lines
5.9 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!--Template for FAQ section with collapsible question-answer cards. Includes frequently asked questions
|
|
related to investing, benefits of investing, starting investing, and trading.-->
|
|
<template id="s_faq" name="Trading FAQ">
|
|
<section class="s_faq_collapse pt32 pb32">
|
|
<div class="faq_header" style="text-align:center;">
|
|
FREQUENTLY ASKED QUESTIONS (FAQs)
|
|
</div>
|
|
<br/>
|
|
<t t-set="uniq" t-value="datetime.datetime.now().microsecond"/>
|
|
<div class="container faq">
|
|
<div id="myCollapse" class="accordion" role="tablist">
|
|
<div class="card bg-white faq_question" data-name="Item">
|
|
<a href="#"
|
|
t-attf-data-target="#myCollapseTab{{uniq}}_1"
|
|
role="tab"
|
|
data-toggle="collapse" aria-expanded="true"
|
|
class="card-header faq_text">What are the
|
|
benefits of
|
|
investing?
|
|
</a>
|
|
<div t-attf-id="myCollapseTab{{uniq}}_1"
|
|
class="collapse show" data-parent="#myCollapse"
|
|
role="tabpanel">
|
|
<div class="card-body">
|
|
<p class="card-text">Among the many advantages
|
|
of investing are the potential long-term
|
|
expansion of wealth, the capacity to achieve
|
|
financial objectives like retirement or
|
|
college funding, and the generation of
|
|
passive income. Yet, investing also carries
|
|
a
|
|
certain amount of risk and necessitates
|
|
careful assessment of one's own financial
|
|
objectives.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card bg-white faq_question" data-name="Item">
|
|
<a href="#"
|
|
t-attf-data-target="#myCollapseTab{{uniq}}_2"
|
|
role="tab"
|
|
data-toggle="collapse" aria-expanded="false"
|
|
class="collapsed card-header faq_text">Will i
|
|
lose
|
|
money through investing?
|
|
</a>
|
|
<div t-attf-id="myCollapseTab{{uniq}}_2"
|
|
class="collapse" data-parent="#myCollapse"
|
|
role="tabpanel">
|
|
<div class="card-body">
|
|
<p class="card-text">
|
|
investing carries a certain amount of risk
|
|
and necessitates careful assessment of
|
|
one's own financial objectives.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card bg-white faq_question" data-name="Item">
|
|
<a href="#"
|
|
t-attf-data-target="#myCollapseTab{{uniq}}_3"
|
|
role="tab"
|
|
data-toggle="collapse" aria-expanded="false"
|
|
class="collapsed card-header faq_text">How do i
|
|
start
|
|
investing?
|
|
</a>
|
|
<div t-attf-id="myCollapseTab{{uniq}}_3"
|
|
class="collapse" data-parent="#myCollapse"
|
|
role="tabpanel">
|
|
<div class="card-body">
|
|
<p class="card-text">You can start investing by
|
|
setting clear financial goals, educating
|
|
yourself
|
|
on investment options, and creating a
|
|
diversified investment portfolio that aligns
|
|
with your risk tolerance and long-term
|
|
objectives.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card bg-white faq_question" data-name="Item">
|
|
<a href="#"
|
|
t-attf-data-target="#myCollapseTab{{uniq}}_4"
|
|
role="tab"
|
|
data-toggle="collapse" aria-expanded="false"
|
|
class="collapsed card-header faq_text">What is
|
|
the difference between investing and trading?
|
|
</a>
|
|
<div t-attf-id="myCollapseTab{{uniq}}_3"
|
|
class="collapse" data-parent="#myCollapse"
|
|
role="tabpanel">
|
|
<div class="card-body">
|
|
<p class="card-text">Investing is a long-term
|
|
strategy to build wealth by buying and
|
|
holding assets, whereas trading is a
|
|
short-term plan to profit from buying and
|
|
selling assets in a relatively short period
|
|
of time.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|
|
|