Explorar el Código

front page gets 6 random tools

joel
Simon Bowie hace 2 años
padre
commit
cef5f7332d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      web/app/main.py

+ 1
- 1
web/app/main.py Ver fichero

@@ -18,7 +18,7 @@ main = Blueprint('main', __name__)
# route for index page
@main.route('/')
def index():
tools = Resource.query.filter_by(type='tool').order_by(func.random()).limit(5).all()
tools = Resource.query.filter_by(type='tool').order_by(func.random()).limit(6).all()
with open('content/home.md', 'r') as f:
text = f.read()
text = markdown.markdown(text)

Cargando…
Cancelar
Guardar