Skip to content

Add project: use richer selector for organization/team #636

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,23 @@
{% block project_add_subheader %}
{% trans "Choose organization and team" %}
{% endblock project_add_subheader %}

{% block wizard_form %}
<script type="text/javascript">
var content = [
{ category: 'Read the Docs', title: 'Admins' },
{ category: 'Read the Docs', title: 'Read Only' },
{ category: 'Admin', title: 'Admin' },
{ category: 'Admin', title: 'Read Only' },
];
</script>

<div class="ui category search"
data-bind="semanticui: { search: { type: 'category', source: content, searchFields: ['title', 'name', 'description'], fullTextSearch: true } }">
<div class="ui icon input">
<input class="prompt" type="text" placeholder="Search...">
<i class="search icon"></i>
</div>
<div class="results"></div>
</div>
{% endblock wizard_form %}