소스 검색

index now retrieves tools in a random order

joel
Simon Bowie 3 년 전
부모
커밋
11f75864dc
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      web/app/main.py

+ 3
- 1
web/app/main.py 파일 보기

@@ -11,13 +11,15 @@ from flask import Blueprint, render_template
from flask_login import login_required, current_user
from . import db
from .models import Tool
from sqlalchemy.sql import func
from sqlalchemy.orm import load_only

main = Blueprint('main', __name__)

# route for index page
@main.route('/')
def index():
tools = Tool.query.limit(3)
tools = Tool.query.order_by(func.random()).limit(5).all()
return render_template('index.html', tools=tools)

# route for profile page

Loading…
취소
저장