Open Reinhardtlotter opened 2 years ago
9.3/10 pt Good idea of the website All CSS matches with the theme of space Create Task PBL feature was interesting, but seems to need more CSS Both individual and team video well showed the features Doesn't have Google Translate/Search feature
Individual/Pair Evaluation on Create Task Project - 5pts
[x] Wiki/Jekyll page with design ideas and usage
[x] Create Performance Task PBL feature
[x] Final committed program code showing algorithms written in JS/Python
[x] Written responses to all the prompts in the performance task
[x] 1min video that meets CB create task requirements
Team Final Grading Considerations - 5 pts
[x] PBL Github pages. Jekyll, WIKI, live review focus
[x] PBL theme consistent through project and described in Github Pages
[x] Sassy / Bootstrap
[x] Blueprint illustration/demonstration
[x] CRUD Async Operation - runtime and understanding of JavaScript and Fetch
[x] Individual PBL MVC feature/commits showing algorithms written in JS/Python
[x] Runtime Features shown in 1 min video
[x] Highlight of best features
[x] CRUD/Search on project database tables, easy to identify from UI
[x] MVC - a code overview showing usage of MVC (HTML, Routes/Render Template functions, Model functions)
[ ] Google Search or Google translate implemented
[x] Scrum Board - Overview of completed tasks and Github tangibles
[x] Clarity and quality of finding information
[x] Deployed Project 24/7 - Deployment Overview and Policies in Github Pages
[x] N@tM Participation and readiness for event
Score: 9.3/10 Individual/Pair Evaluation on Create Task Project - 5pts
[ ] Wiki/Jekyll page with design ideas and usage https://github.com/Archkitten/m22p4-ninjas/wiki/Reinhardt---Derrick-Create-task
[ ] Create Performance Task PBL feature
[ ] Final committed program code showing algorithms written in JS/Python
@app.route('/sunormoon/', methods=['GET', 'POST']) def sunormoon(): pun = ["Youre so sunny", "like father, like sun" ] msg = "FINISH THE TEST FIRST" ques = [] for i in range(7): ques.append("")
ques[6] = None
ques1 = request.form.get("ques1")
ques2 = request.form.get("ques2")
ques3 = request.form.get("ques3")
ques4 = request.form.get("ques4")
ques5 = request.form.get("ques5")
ques6 = request.form.get("ques6")
ques7 = request.form.get("ques7")
resultpy = calculate(ques1, ques2, ques3, ques4, ques5, ques6, ques7)
from random import random
from flask import render_template, request
from init import app from crud.app_crud import app_crud from games.games import app_games
from createtask.astronomertrivia import app_astronomertrivia from homepages.homepages import app_homepages
app.register_blueprint(app_crud) app.register_blueprint(app_homepages) app.register_blueprint(app_games)
app.register_blueprint(app_astronomertrivia) import random