Hi! I'm trying to create admin page using Flask-Admin. This small code works on localhost but doesn't work here. I've got '404 not found' error when going to http://mysite.com/admin. I've created links for static files in web tab of dashboard but still have an error. So I can't understand what i'm doing wrong. Help me please.
from flask import Flask
from flask.ext import admin
app = Flask(__name__)
if __name__ == '__main__':
admin = admin.Admin(app)
app.run()