Skip to content

Commit

Permalink
Improve Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
svenseeberg committed Dec 3, 2023
1 parent 7c4a5af commit 441368c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% block content %}
<h2>Leeway Simulation Documentation</h2>
<h3>Background</h3>
<p>This software acts as a web user interface for the [OpenDrift Leeway](https://opendrift.github.io/gallery/example_leeway.html) model. The basis for the simulation are experiments performed by the US Coast Guard in 1999. The results are published on [https://ntrl.ntis.gov](https://ntrl.ntis.gov/NTRL/dashboard/searchResults/titleDetail/ADA366414.xhtml;jsessionid=e0feda6e145a97d81af28e503cd7), which include desriptions of the objects that were tested (2-13 and following pages).</p>
<p>This software acts as a web user interface for the <a href="https://opendrift.github.io/gallery/example_leeway.html">OpenDrift Leeway</a> model. The basis for the simulation are experiments performed by the US Coast Guard in 1999. The results are published on <a href="https://ntrl.ntis.gov/NTRL/dashboard/searchResults/titleDetail/ADA366414.xhtml">https://ntrl.ntis.gov</a>, which include desriptions of the objects that were tested (2-13 and following pages).</p>
<h3>E-Mail Interface</h3>
<p></p>
<h3>Interpreting Simulation Result</h3>
Expand Down
6 changes: 3 additions & 3 deletions opendrift_leeway_webgui/leeway/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
#: The url patterns of this module (see :doc:`django:topics/http/urls`)
urlpatterns = [
path("", IndexRedirectView.as_view(), name="index"),
path("documentation/", TemplateView.as_view(
template_name="leeway/leewaysimulation_documentation.html"
), name="simulation_documentation"),
path(
"simulations/",
include(
Expand All @@ -32,9 +35,6 @@
LeewaySimulationDetailView.as_view(),
name="simulation_detail",
),
path("documentation/", TemplateView.as_view(
template_name="leewaysimulation_documentation.html"
), name="simulation_documentation")
]
),
),
Expand Down

0 comments on commit 441368c

Please sign in to comment.