Skip to content
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

Restucture the webUI #194

Merged
merged 1 commit into from
Nov 4, 2015
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions pdc/apps/release/templates/product_pages.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
{% block content %}
<h3 class="page-header">Product information</h3>
<ul>
<li><a href="{% url 'base_product/index' %}">Base Products</a></li>
<li><a href="{% url 'product/index' %}">Products</a></li>
<li><a href="{% url 'product_version/index' %}">Product Versions</a></li>
</li>
Expand Down
9 changes: 0 additions & 9 deletions pdc/apps/release/templates/release_pages.html

This file was deleted.

4 changes: 0 additions & 4 deletions pdc/apps/release/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,10 +543,6 @@ def product_pages(request):
return render(request, "product_pages.html", {})


def release_pages(request):
return render(request, "release_pages.html", {})


class ReleaseCloneViewSet(StrictQueryParamMixin, viewsets.GenericViewSet):
queryset = models.Release.objects.none() # Required for permissions

Expand Down
1 change: 0 additions & 1 deletion pdc/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
url(r"^product/$", ProductListView.as_view(), name="product/index"),
url(r"^product/(?P<id>\d+)/$", ProductDetailView.as_view(), name="product/detail"),
url(r'^product-index/$', release_views.product_pages, name='product_pages'),
url(r'^release-index/$', release_views.release_pages, name='release_pages'),

url(r"^product-version/$",
ProductVersionListView.as_view(),
Expand Down