Ejemplo n.º 1
0
def bootcamp_application_form():
    """
  The bootcamp application form
  """
    return render_template(
        '/bootcamp/application_form.html',
        title=build_page_title('Boot Camp Application Form'))
Ejemplo n.º 2
0
def usgdp_npp():
    """
    Serve up the U.S. real GDP normalized peak plot viz
    """
    return render_template(
        'gallery/usgdp_npp.html',
        title=build_page_title('U.S. Real GDP Normalized Peak Plot'))
Ejemplo n.º 3
0
def bootcamp_current():
    """
    Show the current bootcamp status page
    """
    return render_template(
        '/bootcamp/current.html',
        title=build_page_title('Current OSE Lab Boot Camp status'))
Ejemplo n.º 4
0
def marginal_effective_corporate_taxes():
    """
    Serve up the Marginal Effective Tax Rates on Corporate Investments viz
    """
    return render_template(
        'gallery/marginal_effective_corporate_taxes.html',
        title=build_page_title(
            'Marginal Effective Tax Rates on Corporate Investments'))
Ejemplo n.º 5
0
def usempl_npp():
    """
    Serve up the US total nonfarm employment normalized peak plot viz
    """
    return render_template(
        'gallery/usempl_npp.html',
        title=build_page_title(
            'U.S. Total Nonfarm Employment Normalized Peak Plot'))
Ejemplo n.º 6
0
def faq():
    """
    Show the FAQ page
    """
    return render_template('faq/faq.html', title=build_page_title('FAQ'))
Ejemplo n.º 7
0
def gallery():
    """
    Serve up the gallery page
    """
    return render_template('gallery/index.html',
                           title=build_page_title('Gallery'))
Ejemplo n.º 8
0
def djia_npp_mth():
    """
    Serve up the DJIA normalized peak plot viz
    """
    return render_template('gallery/djia_npp_mth.html',
                           title=build_page_title('DJIA Normalized Peak Plot'))
Ejemplo n.º 9
0
def bootcamp_comments():
    """
    Show the boot camp comments page
    """
    return render_template('bootcamp/comments.html',
                           title=build_page_title('Boot Camp Comments'))
Ejemplo n.º 10
0
def inject_view_helpers():
    return dict(now=datetime.utcnow(), title=build_page_title())
Ejemplo n.º 11
0
def bootcamp_2020():
    """
    Show the 2020 bootcamp page
    """
    return render_template('/bootcamp/2020.html',
                           title=build_page_title('2020 Boot Camp Postponed'))
Ejemplo n.º 12
0
def overlapping_generations():
    """
    Serve up the overlapping generations viz
    """
    return render_template('gallery/overlapping_generations.html',
                           title=build_page_title('Overlapping Generations'))
Ejemplo n.º 13
0
def bootcamp_2019():
    """
    Show the 2019 bootcamp page
    """
    return render_template('/bootcamp/2019.html',
                           title=build_page_title('2019 Boot Camp'))
Ejemplo n.º 14
0
def tseries_pubdebt_gdp_frcsts():
    """
    Serve up the comparison of CBO debt-to-GDP forecasts plot viz
    """
    return render_template('gallery/tseries_pubdebt_gdp_frcsts.html',
                           title=build_page_title('Comparison of CBO U.S. Debt-to-GDP Forecasts'))
Ejemplo n.º 15
0
def about():
    """
    Shows the about page
    """
    return render_template('home/about.html', title=build_page_title('About'))
Ejemplo n.º 16
0
def blog_post(post):
    """
    Serve up the given blog post
    """
    return render_template(f"blog/posts/{post}.html",
                           title=build_page_title('Blog'))
Ejemplo n.º 17
0
def tutorials():
    """
    Serve up the tutorials page
    """
    return render_template('tutorials/index.html',
                           title=build_page_title('Tutorials'))