aboutsummaryrefslogtreecommitdiffstats
path: root/partmom.py
diff options
context:
space:
mode:
authorbryan newbold <bnewbold@robocracy.org>2013-05-16 14:02:42 -0400
committerbryan newbold <bnewbold@robocracy.org>2013-05-17 08:49:24 -0400
commit9515e1cf6bed549a782fd4918f3974e365b98f78 (patch)
tree6a564dd3cb402f4637d4325d4350d8da64db9a1c /partmom.py
parent65179da9c0eae6e28f8a4f767403e382e22e8c94 (diff)
downloadpartmom-9515e1cf6bed549a782fd4918f3974e365b98f78.tar.gz
partmom-9515e1cf6bed549a782fd4918f3974e365b98f78.zip
add artix7 and kintex7 data
Diffstat (limited to 'partmom.py')
-rwxr-xr-xpartmom.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/partmom.py b/partmom.py
index 39cc670..1d89eff 100755
--- a/partmom.py
+++ b/partmom.py
@@ -15,6 +15,14 @@ app.config.from_object(__name__)
def index():
return render_template('index.html')
+@app.route('/xilinx/artix7/', methods=['GET'])
+def xilinx_artix7():
+ return render_template('grid.html', grid=xilinx.artix7_grid)
+
+@app.route('/xilinx/kintex7/', methods=['GET'])
+def xilinx_kintex7():
+ return render_template('grid.html', grid=xilinx.kintex7_grid)
+
@app.route('/xilinx/spartan6/', methods=['GET'])
def xilinx_spartan6():
return render_template('grid.html', grid=xilinx.spartan6_grid)