mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-09 15:43:47 -06:00
23 lines
730 B
Python
23 lines
730 B
Python
##########################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2015, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
##########################################################################
|
|
|
|
"""A blueprint module implementing the pgAdmin help system."""
|
|
MODULE_NAME = 'help'
|
|
|
|
from flask import Blueprint
|
|
from flaskext.gravatar import Gravatar
|
|
from flask.ext.security import login_required
|
|
from flask.ext.login import current_user
|
|
from inspect import getmoduleinfo, getmembers
|
|
|
|
import config
|
|
|
|
# Initialise the module
|
|
blueprint = Blueprint(MODULE_NAME, __name__, static_url_path='/help', static_folder=config.HELP_PATH)
|