Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在本地主机上研究 Pybossa 已经有一段时间了。我创建了一个项目并发布了它。然后,请我的朋友处理这些任务,通过隧道托管它。我的一个朋友在做我的实验时创建了他自己的实验。现在,对于下一个用户,Pybossa 显示了两个已发布的项目。在目标项目运行 10 次后,我观察到只有 3 人为我的项目做出了贡献!
我需要禁用此功能,以便只有我(管理员)有权创建项目并阻止其他人创建项目。那可能吗?如果是,那么如何?
我自己找到了答案。这是可以做到的。编辑文件 _navebar.html
将此添加到创建按钮:-
{% if current_user.admin == 1 %} --code-- {% endif %}
它已经完成了!