No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # @name: main.py
  2. # @creation_date: 2021-10-20
  3. # @license: The MIT License <https://opensource.org/licenses/MIT>
  4. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  5. # @purpose: Main route for index and other pages
  6. # @acknowledgements:
  7. # https://www.digitalocean.com/community/tutorials/how-to-add-authentication-to-your-app-with-flask-login
  8. from flask import Blueprint, render_template
  9. from flask_login import login_required, current_user
  10. from .models import Resource
  11. from .resources import *
  12. from .relationships import *
  13. from sqlalchemy.sql import func
  14. import markdown
  15. main = Blueprint('main', __name__)
  16. # route for index page
  17. @main.route('/')
  18. def index():
  19. tools = Resource.query.filter_by(type='tool').order_by(func.random()).limit(6).all()
  20. books = Resource.query.filter_by(type='book').order_by(func.random()).limit(6).all()
  21. with open('content/home.md', 'r') as f:
  22. text = f.read()
  23. text = markdown.markdown(text)
  24. book_showcase = get_full_resource('69')
  25. return render_template('index.html', text=text, tools=tools, books=books, book=book_showcase)
  26. # route for profile page
  27. @main.route('/profile')
  28. @login_required
  29. def profile():
  30. return render_template('profile.html', name=current_user.name)
  31. # route for test page
  32. @main.route('/test')
  33. def test():
  34. tool_id = '69'
  35. tool = get_full_resource(tool_id)
  36. return render_template('test.html', resource=tool)
  37. # route for about page
  38. @main.route('/about')
  39. def about():
  40. with open('content/about.md', 'r') as f:
  41. text = f.read()
  42. text = markdown.markdown(text)
  43. return render_template('about.html', text=text)