├── app
├── templates
│ ├── base_templates
│ │ ├── page_base.html
│ │ ├── flask_user_base.html
│ │ ├── form_macros.html
│ │ └── base.html
│ ├── flask_user
│ │ ├── member_base.html
│ │ ├── public_base.html
│ │ └── register.html
│ ├── pages
│ │ └── home_page.html
│ ├── users
│ │ └── user_profile_page.html
│ └── _readme.txt
├── users
│ ├── __init__.py
│ ├── forms.py
│ ├── views.py
│ └── models.py
├── __init__.py
├── config
│ ├── __init__.py
│ ├── settings.py
│ └── local_settings_example.py
├── pages
│ ├── __init__.py
│ └── views.py
├── startup
│ ├── __init__.py
│ └── init_app.py
├── static
│ └── app
│ │ └── app.css
├── app_and_db.py
└── _readme.txt
├── tests
├── __init__.py
├── .coveragerc
├── _readme.txt
├── test_simple_urls.py
└── conftest.py
├── requirements.txt
├── runserver.py
├── .gitignore
├── fabfile.py
└── README.rst
/app/templates/base_templates/page_base.html:
--------------------------------------------------------------------------------
1 | {% extends "base_templates/base.html" %}
2 |
--------------------------------------------------------------------------------
/app/templates/flask_user/member_base.html:
--------------------------------------------------------------------------------
1 | {% extends 'base_templates/flask_user_base.html' %}
2 |
3 |
--------------------------------------------------------------------------------
/app/templates/flask_user/public_base.html:
--------------------------------------------------------------------------------
1 | {% extends 'base_templates/flask_user_base.html' %}
2 |
3 |
--------------------------------------------------------------------------------
/app/users/__init__.py:
--------------------------------------------------------------------------------
1 | # The __init__.py files make Python's import statement work inside subdirectories.
2 | # Most __init__.py files are empty: they just must be preset.
--------------------------------------------------------------------------------
/app/__init__.py:
--------------------------------------------------------------------------------
1 | # special Python file to turn a subdirectory into a Python 'package'
2 | # Python packages can be accessed using the Python 'import' statement
3 |
4 | # Intentionally left empty
--------------------------------------------------------------------------------
/tests/__init__.py:
--------------------------------------------------------------------------------
1 | # special Python file to turn a subdirectory into a Python 'package'
2 | # Python packages can be accessed using the Python 'import' statement
3 |
4 | # Intentionally left empty
--------------------------------------------------------------------------------
/app/config/__init__.py:
--------------------------------------------------------------------------------
1 | # special Python file to turn a subdirectory into a Python 'package'
2 | # Python packages can be accessed using the Python 'import' statement
3 |
4 | # Intentionally left empty
--------------------------------------------------------------------------------
/app/pages/__init__.py:
--------------------------------------------------------------------------------
1 | # special Python file to turn a subdirectory into a Python 'package'
2 | # Python packages can be accessed using the Python 'import' statement
3 |
4 | # Intentionally left empty
--------------------------------------------------------------------------------
/app/startup/__init__.py:
--------------------------------------------------------------------------------
1 | # special Python file to turn a subdirectory into a Python 'package'
2 | # Python packages can be accessed using the Python 'import' statement
3 |
4 | # Intentionally left empty
--------------------------------------------------------------------------------
/tests/.coveragerc:
--------------------------------------------------------------------------------
1 | # Configuration for the test coverage tool (py.test --cov)
2 | #
3 | # Copyright 2014 SolidBuilds.com. All rights reserved
4 | #
5 | # Authors: Ling Thio Home page
5 |
6 | {% if current_user.is_authenticated() %}
7 |
8 |
9 | {% else %}
10 |
{{ e }}
11 | {% endfor %} 12 | {% endif %} 13 |