Updated bootstrap to 2.2.1 and jquery to 1.82

This commit is contained in:
Eric S. Bullington
2012-11-04 17:07:25 -05:00
parent 99dd4974b4
commit 8977a36f45
8 changed files with 9467 additions and 9663 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ DEBUG = True
# Simple way to generate a random secret key:
#
# python -c "print repr(__import__('os').urandom(40))"
SQLALCHEMY_DATABASE_URI = 'postgresql://user:password@127.0.0.1/app'
SQLALCHEMY_DATABASE_URI = 'postgresql://eric:kfdasferuiawohnjlkasdfjkl@127.0.0.1/app'
SECRET_KEY = 'kfdasferuiawohnjlkasdfjkl'
TITLE = 'app'
SUBTITLE = 'A Flask Template with Bootstrap'
+2 -2
View File
@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
from flask import Flask, request, jsonify, make_response, render_template, flash, redirect, url_for, session, escape, g
from models.database import db_session
from flaskext.sqlalchemy import SQLAlchemy
from flaskext.auth import Auth, AuthUser, login_required, logout
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.auth import Auth, AuthUser, login_required, logout
from models.sa import get_user_class
app = Flask(__name__)
File diff suppressed because one or more lines are too long
+9 -652
View File
File diff suppressed because one or more lines are too long
+6 -1
View File
File diff suppressed because one or more lines are too long
-8981
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+9440 -4
View File
File diff suppressed because one or more lines are too long