{#- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -#} {% extends g.theme.master %} {% block title %}{{c.project.name}} / Categorization{% endblock %} {% block header %}Project Categorization{% endblock %} {% macro show_trove_base_cat(base) %}

{{base.fullname}}

{% for cat in c.project.troves_by_type(base.shortname) %}
{{cat.fullpath}}
{% else %} No {{base.fullname}} categories have been selected. {% endfor %}


{% endmacro %} {% block content %} {% if c.project.deleted %}
This project has been deleted and is not visible to non-admin users
{% endif %}

Project Labels

{{ c.label_edit.display(id='labels', name='labels', value=c.project.labels) }}
{{show_trove_base_cat(topic_trove)}} {{show_trove_base_cat(license_trove)}} {% for base in base_troves if base.shortname != 'topic' and base.shortname != 'license' %} {{show_trove_base_cat(base)}} {% endfor %} {% endblock %} {% block extra_js %} {% endblock %} {% block extra_css %} {% endblock %}