diff --git a/pastebin/templates/pastebin/geometry_create.html b/pastebin/templates/pastebin/geometry_create.html index c397aad..3589dce 100644 --- a/pastebin/templates/pastebin/geometry_create.html +++ b/pastebin/templates/pastebin/geometry_create.html @@ -1,6 +1,6 @@ {% extends "base.html" %} - +{% block title %} New paste {% endblock %} {% block content %}
diff --git a/pastebin/urls.py b/pastebin/urls.py index 8e5a8a2..c453b90 100644 --- a/pastebin/urls.py +++ b/pastebin/urls.py @@ -3,5 +3,5 @@ from django.conf.urls import patterns, include, url from views import GeometryView, GeometryCreate urlpatterns = patterns('', - url(r'^new/$', GeometryCreate.as_view()), - url(r'^g/(?P\d+)/$', GeometryView.as_view(), name = 'geometry_details')) \ No newline at end of file + url(r'^new/$', GeometryCreate.as_view(), name='geometry_create'), + url(r'^g/(?P\d+)/$', GeometryView.as_view(), name='geometry_details')) \ No newline at end of file diff --git a/static_common/css/layout.scss b/static_common/css/layout.scss index b2c7e12..61058da 100644 --- a/static_common/css/layout.scss +++ b/static_common/css/layout.scss @@ -68,7 +68,6 @@ } - .button-green { background-color: #1CB841; color: #ffffff; diff --git a/templates/base.html b/templates/base.html index e921c48..6383c80 100644 --- a/templates/base.html +++ b/templates/base.html @@ -21,7 +21,7 @@