Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
docassemble/docassemble_webapp/docassemble/webapp/templates/pages/start.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
17 lines (16 sloc)
1.16 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%- set footer_content = get_part('start page footer', get_part('global footer')) %} | |
{%- set page_title = get_part('start page title', word('Interviews')) %} | |
{%- set tab_title = get_part('start page tab title', word('Interviews')) %} | |
{%- set extra_css = get_part('start page extra css') %} | |
{%- set extra_js = get_part('start page extra javascript') %} | |
{%- set navigation_bar_html = get_part('start page navigation bar html') %} | |
{%- extends 'flask_user/public_base.html' %} | |
{%- block content %} | |
<h1 class="dastartpage">{{ get_part('start page heading', word('Available interviews')) }}</h1> | |
{{ get_part('start page pre') }} | |
<ul class="dastartpage"> | |
{%- for interview in interview_info %} | |
<li><a href="{{ interview['link'] }}"{% if interview['status_class'] %} class="{{ interview['status_class'] }}"{% endif %}>{{ interview['title'] }}</a>{% if interview['subtitle'] %} <span class="{% if interview['subtitle_class'] %}{{ interview['subtitle_class'] }}{% else %}text-body-secondary dasubtitle{% endif %}">{{ interview['subtitle'] }}</span>{% endif %}</li> | |
{%- endfor %} | |
</ul>{{ get_part('start page post') }} | |
{%- endblock %} |