We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faeeff0 commit 6925b14Copy full SHA for 6925b14
views/web_views.py
@@ -161,6 +161,12 @@ def team():
161
162
return render_template("team.html", contributors=contributors)
163
164
+@app.route("/contributors", strict_slashes=False)
165
+@app.route("/<lang_code>/contributors", strict_slashes=False)
166
+def contributors():
167
+ contributors = db_models.Contributor.query.all()
168
+ return jsonify({"contributors": contributors})
169
+
170
@app.route("/admin", strict_slashes=False)
171
@app.route("/<lang_code>/admin", strict_slashes=False)
172
def admin():
0 commit comments