Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
2c6af613
Commit
2c6af613
authored
Dec 11, 2014
by
Serge S. Koval
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:mrjoes/flask-admin
parents
625e021b
50de6ff0
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
140 additions
and
140 deletions
+140
-140
README.rst
examples/auth-mongoengine/README.rst
+6
-6
README.rst
examples/auth/README.rst
+8
-8
README.rst
examples/babel/README.rst
+8
-8
README.rst
examples/file/README.rst
+6
-6
README.rst
examples/forms/README.rst
+8
-8
README.rst
examples/layout-bootstrap3/README.rst
+8
-8
README.rst
examples/layout/README.rst
+8
-8
README.rst
examples/menu-external-links/README.rst
+6
-6
README.rst
examples/methodview/README.rst
+7
-7
README.rst
examples/mongoengine/README.rst
+6
-6
README.rst
examples/multi/README.rst
+6
-6
README.rst
examples/peewee/README.rst
+7
-7
README.rst
examples/pymongo/README.rst
+6
-6
README.rst
examples/quickstart/README.rst
+8
-8
README.rst
examples/rediscli/README.rst
+7
-7
README.rst
examples/simple/README.rst
+6
-6
README.rst
examples/sqla-custom-filter/README.rst
+8
-8
README.rst
examples/sqla-inline/README.rst
+6
-6
README.rst
examples/sqla/README.rst
+9
-9
README.rst
examples/wysiwyg/README.rst
+6
-6
No files found.
examples/auth-mongoengine/README.rst
View file @
2c6af613
...
...
@@ -4,20 +4,20 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/auth-mongoengine/requirements.txt'
pip install -r 'examples/auth-mongoengine/requirements.txt'
4. Run the application::
python examples/auth-mongoengine/app.py
python examples/auth-mongoengine/app.py
examples/auth/README.rst
View file @
2c6af613
...
...
@@ -4,24 +4,24 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/auth/requirements.txt'
pip install -r 'examples/auth/requirements.txt'
4. Run the application::
python examples/auth/app.py
python examples/auth/app.py
The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::
if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
examples/babel/README.rst
View file @
2c6af613
...
...
@@ -4,20 +4,20 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/babel/requirements.txt'
pip install -r 'examples/babel/requirements.txt'
4. Run the application::
python examples/babel/app.py
python examples/babel/app.py
examples/file/README.rst
View file @
2c6af613
...
...
@@ -4,20 +4,20 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/file/requirements.txt'
pip install -r 'examples/file/requirements.txt'
4. Run the application::
python examples/file/app.py
python examples/file/app.py
examples/forms/README.rst
View file @
2c6af613
...
...
@@ -5,24 +5,24 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/forms/requirements.txt'
pip install -r 'examples/forms/requirements.txt'
4. Run the application::
python examples/forms/app.py
python examples/forms/app.py
The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::
if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
examples/layout-bootstrap3/README.rst
View file @
2c6af613
...
...
@@ -4,24 +4,24 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/layout-bootstrap3/requirements.txt'
pip install -r 'examples/layout-bootstrap3/requirements.txt'
4. Run the application::
python examples/layout-bootstrap3/app.py
python examples/layout-bootstrap3/app.py
The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::
if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
examples/layout/README.rst
View file @
2c6af613
...
...
@@ -4,24 +4,24 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/layout/requirements.txt'
pip install -r 'examples/layout/requirements.txt'
4. Run the application::
python examples/layout/app.py
python examples/layout/app.py
The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::
if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
examples/menu-external-links/README.rst
View file @
2c6af613
...
...
@@ -4,20 +4,20 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/menu-external-links/requirements.txt'
pip install -r 'examples/menu-external-links/requirements.txt'
4. Run the application::
python examples/menu-external-links/app.py
python examples/menu-external-links/app.py
examples/methodview/README.rst
View file @
2c6af613
...
...
@@ -4,18 +4,18 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/methodview/requirements.txt'
pip install -r 'examples/methodview/requirements.txt'
4. Run the application::
python examples/methodview/app.py
python examples/methodview/app.py
examples/mongoengine/README.rst
View file @
2c6af613
...
...
@@ -4,19 +4,19 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/mongoengine/requirements.txt'
pip install -r 'examples/mongoengine/requirements.txt'
4. Run the application::
python examples/mongoengine/app.py
python examples/mongoengine/app.py
examples/multi/README.rst
View file @
2c6af613
...
...
@@ -4,19 +4,19 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/multi/requirements.txt'
pip install -r 'examples/multi/requirements.txt'
4. Run the application::
python examples/multi/app.py
python examples/multi/app.py
examples/peewee/README.rst
View file @
2c6af613
...
...
@@ -4,19 +4,19 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/peewee/requirements.txt'
pip install -r 'examples/peewee/requirements.txt'
4. Run the application::
python examples/peewee/app.py
python examples/peewee/app.py
examples/pymongo/README.rst
View file @
2c6af613
...
...
@@ -4,19 +4,19 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/pymongo/requirements.txt'
pip install -r 'examples/pymongo/requirements.txt'
4. Run the application::
python examples/pymongo/app.py
python examples/pymongo/app.py
examples/quickstart/README.rst
View file @
2c6af613
...
...
@@ -4,21 +4,21 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/quickstart/requirements.txt'
pip install -r 'examples/quickstart/requirements.txt'
4. Run the application with any of the following::
python examples/quickstart/app.py
python examples/quickstart/app2.py
python examples/quickstart/app3.py
python examples/quickstart/app.py
python examples/quickstart/app2.py
python examples/quickstart/app3.py
examples/rediscli/README.rst
View file @
2c6af613
...
...
@@ -4,20 +4,20 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/rediscli/requirements.txt'
pip install -r 'examples/rediscli/requirements.txt'
4. Run the application::
python examples/rediscli/app.py
python examples/rediscli/app.py
You should now be able to access a Redis instance on your machine (if it is running) through the admin interface.
\ No newline at end of file
You should now be able to access a Redis instance on your machine (if it is running) through the admin interface.
examples/simple/README.rst
View file @
2c6af613
...
...
@@ -5,18 +5,18 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/simple/requirements.txt'
pip install -r 'examples/simple/requirements.txt'
4. Run the application::
python examples/simple/app.py
python examples/simple/app.py
examples/sqla-custom-filter/README.rst
View file @
2c6af613
...
...
@@ -4,24 +4,24 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/sqla-custom-filter/requirements.txt'
pip install -r 'examples/sqla-custom-filter/requirements.txt'
4. Run the application::
python examples/sqla-custom-filter/app.py
python examples/sqla-custom-filter/app.py
The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::
if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
examples/sqla-inline/README.rst
View file @
2c6af613
...
...
@@ -4,20 +4,20 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/sqla-inline/requirements.txt'
pip install -r 'examples/sqla-inline/requirements.txt'
4. Run the application::
python examples/sqla-inline/app.py
python examples/sqla-inline/app.py
examples/sqla/README.rst
View file @
2c6af613
...
...
@@ -4,25 +4,25 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/sqla/requirements.txt'
pip install -r 'examples/sqla/requirements.txt'
4. Run either of these applications::
python examples/sqla/app.py
python examples/sqla/app2.py
python examples/sqla/app.py
python examples/sqla/app2.py
The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour,
comment the following lines in app.py:::
if not os.path.exists(database_path):
build_sample_db()
if not os.path.exists(database_path):
build_sample_db()
examples/wysiwyg/README.rst
View file @
2c6af613
...
...
@@ -4,19 +4,19 @@ To run this example:
1. Clone the repository::
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
git clone https://github.com/mrjoes/flask-admin.git
cd flask-admin
2. Create and activate a virtual environment::
virtualenv env
source env/bin/activate
virtualenv env
source env/bin/activate
3. Install requirements::
pip install -r 'examples/wysiwyg/requirements.txt'
pip install -r 'examples/wysiwyg/requirements.txt'
4. Run the application::
python examples/wysiwyg/app.py
python examples/wysiwyg/app.py
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment