{%extends "base.html"%} {%from "oauth2/profile_nav.html" import profile_nav%} {%block title%}Create Resource{%endblock%} {%block css%} {%endblock%} {%block content%}
{{profile_nav("resources", user_privileges)}} {{flash_me()}}
{%if resource_category_error%}

  {{resource_category_error.error}}: {{resource_category_error.error_message}}

{%else%}
Resource Category
{%for category in resource_categories%}
{{category.resource_category_description}}
{%endfor%}
Basic Resource Information
The resource name, e.g. the experiment name.
Access Control
Select whether data in this resource will be publicly viewable.
{%endif%}
{%endblock%}