開始行:
* Flask [#t20e6681]
http://study-flask.readthedocs.io/ja/latest/04.html
Flaskを使いこなす1
ユーザー認証
Flask-SQLAlchemy : https://github.com/mitsuhiko/flask-sql...
** Flask [#ja6c4c0d]
** グローバル [#acb0a3c3]
config.CSS_DEBUGの使い方
#prettify{{
pythonファイル内で
CSS_DEBUG =True
# 環境変数へ格納
app.config.from_object(__name__)
app.config['CSS_DEBUG'] = True
app.config.pop('CSS_DEBUG', None)で取り出せる.
}}
** エラー [#ld1fe3d4]
#prettify{{
Internal Server Error
The server encountered an internal error and was unable t...
}}
よくでるがよく分からん.appの起動時におかしくなっている....
** エラー [#r74ebc24]
<link rel=stylesheet type=text/css href="{{ url_for('sta...
BuildError: Could not build url for endpoint 'static/css...
ただしくはこちら
url_for('static', filename='css/css_debug.css')
ファイルパスはfilenameに記述する
** flask-bootstrap [#r55b0ea5]
#prettify{{
<!-- flask-bootstrapモジュールのおまじない-->
{% extends "bootstrap/base.html" %}
<!-- タイトル -->
{% if title %} {% block title %} {{title}} {% endblock t...
<!-- 静的ファイルフォルダからCSSを読み込む -->
{%- block styles %} {{ super() }}
<!-- userのスクリプト-->
<link rel=stylesheet type=text/css href="{{ url_for('sta...
<!-- もしCSSデバックするなら-->
{% if config.CSS_DEBUG %}
<link rel=stylesheet type=text/css href="{{ url_for('sta...
<div class="navbar navbar-default">
<h1>Flaskr</h1>
<!-- デバッグモード機能 -->
<div>
<a href="{{ url_for('debug_css_mode') }}">CSSデ...
</div>
<!-- デバッグ用リセット機能 -->
<div>
{% if session.logged_in %}
<a href="{{ url_for('reset_entry') }}">リセット<...
</div>
<!-- ログインログアウトの表示(session.logged_inキー...
<div>
{% if not session.logged_in %}
<a href="{{ url_for('login') }}">ログイン</a> {%...
<a href="{{ url_for('logout') }}">ログアウト</a>...
</div>
<!-- ビューの変更 -->
<div>
<a href="{{ url_for('show_pyramid') }}">ピラミッ...
</div>
<div>
<a href="{{ url_for('show_entries') }}">タイムラ...
</div>
<!-- flashを使ったメッセージの表示 -->
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
</div>
{%- endblock navbar %} {% block content %}
<div class="container">
<div class="row">
<div class="col-md-4">
{% block left %}
<!-- ログイン中ならば追加要素を表示 -->
{% if session.logged_in %}
<form action="{{ url_for('add_entry') }}" me...
<p>新規作成</p>
<div class="form-group">
<label>title</label>
<textarea name="title" class="form-c...
</div>
<div class="form-group">
<label>why</label>
<textarea name="why" class="form-con...
</div>
<div class="form-group">
<label>method</label>
<textarea name="method" class="form-...
</div>
<button type="submit" class="btn btn-def...
</form>
{% endif %} {% endblock left %}
</div>
<div class="col-md-8">
{% block right %}{% endblock right %}
</div>
</div>
</div>
}}
{% block footer %} jQuery日本語リファレンス http://semoo...
終了行:
* Flask [#t20e6681]
http://study-flask.readthedocs.io/ja/latest/04.html
Flaskを使いこなす1
ユーザー認証
Flask-SQLAlchemy : https://github.com/mitsuhiko/flask-sql...
** Flask [#ja6c4c0d]
** グローバル [#acb0a3c3]
config.CSS_DEBUGの使い方
#prettify{{
pythonファイル内で
CSS_DEBUG =True
# 環境変数へ格納
app.config.from_object(__name__)
app.config['CSS_DEBUG'] = True
app.config.pop('CSS_DEBUG', None)で取り出せる.
}}
** エラー [#ld1fe3d4]
#prettify{{
Internal Server Error
The server encountered an internal error and was unable t...
}}
よくでるがよく分からん.appの起動時におかしくなっている....
** エラー [#r74ebc24]
<link rel=stylesheet type=text/css href="{{ url_for('sta...
BuildError: Could not build url for endpoint 'static/css...
ただしくはこちら
url_for('static', filename='css/css_debug.css')
ファイルパスはfilenameに記述する
** flask-bootstrap [#r55b0ea5]
#prettify{{
<!-- flask-bootstrapモジュールのおまじない-->
{% extends "bootstrap/base.html" %}
<!-- タイトル -->
{% if title %} {% block title %} {{title}} {% endblock t...
<!-- 静的ファイルフォルダからCSSを読み込む -->
{%- block styles %} {{ super() }}
<!-- userのスクリプト-->
<link rel=stylesheet type=text/css href="{{ url_for('sta...
<!-- もしCSSデバックするなら-->
{% if config.CSS_DEBUG %}
<link rel=stylesheet type=text/css href="{{ url_for('sta...
<div class="navbar navbar-default">
<h1>Flaskr</h1>
<!-- デバッグモード機能 -->
<div>
<a href="{{ url_for('debug_css_mode') }}">CSSデ...
</div>
<!-- デバッグ用リセット機能 -->
<div>
{% if session.logged_in %}
<a href="{{ url_for('reset_entry') }}">リセット<...
</div>
<!-- ログインログアウトの表示(session.logged_inキー...
<div>
{% if not session.logged_in %}
<a href="{{ url_for('login') }}">ログイン</a> {%...
<a href="{{ url_for('logout') }}">ログアウト</a>...
</div>
<!-- ビューの変更 -->
<div>
<a href="{{ url_for('show_pyramid') }}">ピラミッ...
</div>
<div>
<a href="{{ url_for('show_entries') }}">タイムラ...
</div>
<!-- flashを使ったメッセージの表示 -->
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
</div>
{%- endblock navbar %} {% block content %}
<div class="container">
<div class="row">
<div class="col-md-4">
{% block left %}
<!-- ログイン中ならば追加要素を表示 -->
{% if session.logged_in %}
<form action="{{ url_for('add_entry') }}" me...
<p>新規作成</p>
<div class="form-group">
<label>title</label>
<textarea name="title" class="form-c...
</div>
<div class="form-group">
<label>why</label>
<textarea name="why" class="form-con...
</div>
<div class="form-group">
<label>method</label>
<textarea name="method" class="form-...
</div>
<button type="submit" class="btn btn-def...
</form>
{% endif %} {% endblock left %}
</div>
<div class="col-md-8">
{% block right %}{% endblock right %}
</div>
</div>
</div>
}}
{% block footer %} jQuery日本語リファレンス http://semoo...
ページ名: