diff --git a/neuvue_project/neuvue/urls.py b/neuvue_project/neuvue/urls.py index 0270ff17..50695f29 100644 --- a/neuvue_project/neuvue/urls.py +++ b/neuvue_project/neuvue/urls.py @@ -22,6 +22,7 @@ TaskView, IndexView, AuthView, + AboutView, InspectTaskView, LineageView, TokenView, @@ -62,7 +63,8 @@ path('report/', ReportView.as_view(), name="report"), path('userNamespace/', UserNamespaceView.as_view(), name="user-namespace"), path('save_state', SaveStateView.as_view(), name="save-state"), - path('save_operations', SaveOperationsView.as_view(), name="save-operations") + path('save_operations', SaveOperationsView.as_view(), name="save-operations"), + path('about', AboutView.as_view(), name="about"), ] diff --git a/neuvue_project/templates/about.html b/neuvue_project/templates/about.html new file mode 100644 index 00000000..812133bd --- /dev/null +++ b/neuvue_project/templates/about.html @@ -0,0 +1,91 @@ +{% extends "base.html" %} +{% load static %} + +{% block content %} +
+ We are a team of research scientists and engineers from the Johns Hopkins Applied Physics + Laboratory that developed NeuVue with the help of a friendly axonolotl! +
+ ++ NeuVue is a software platform created for large-scale proofreading of machine segmentation and neural + circuit reconstruction in high-resolution electron microscopy connectomics datasets. NeuVue provides an + intuitive interface for proofreaders to collaboratively view, annotate, and edit segmentation and + connectivity data. + + NeuVue has everything you need for a high-throughput proofreading workflow! Analytical dashboards, data + visualization tools, and simple API enables stakeholders real-time access to proofreading progress at an + individual proofreader level as well as global reconstruction quality insights. NeuVue is intentionally + agnostic to the underlying data management backend and can be easily deployed in an AWS environment. + Proofreaders can work with powerful streamlined tools for splitting and merging connectivity data in + dense nano-scale reconstruction better than ever before. +
+ ++ This research was enabled by the IARPA Machine Intelligence from Cortical Networks (MICrONS) program. + Learn more about MICrONS. +
+ ++ Check us out at the Computational Tools and Other Resources: Microscopy and Imaging session at SfN 2022! +
+ ++ We'd love to hear from you! Reach out at info@neuvue.io with questions or if you are interested in collaborating with us. +
+ +