Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
django-panik-nonstop
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
radiopanik
django-panik-nonstop
Commits
422dd902
Commit
422dd902
authored
Nov 21, 2014
by
fred
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add link to today track listing
parent
832a4c46
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
nonstop/templates/nonstop/somalogline_archive_day.html
nonstop/templates/nonstop/somalogline_archive_day.html
+4
-0
nonstop/urls.py
nonstop/urls.py
+1
-1
No files found.
nonstop/templates/nonstop/somalogline_archive_day.html
View file @
422dd902
...
...
@@ -7,6 +7,10 @@
<span><a
href=
"csv"
>
export CSV
</a></span>
{% endblock %}
{% block more-user-links %}
<a
href=
"{% url 'nonstop-today' %}"
>
Aujourd'hui
</a>
{% endblock %}
{% block content %}
<ul
class=
"soma-list"
>
...
...
nonstop/urls.py
View file @
422dd902
...
...
@@ -4,7 +4,7 @@ from .views import SomaDayArchiveView, SomaDayArchiveCsvView, RedirectTodayView,
urlpatterns
=
[
# Example: /2012/nov/10/
url
(
r
'^$'
,
RedirectTodayView
.
as_view
()),
url
(
r
'^$'
,
RedirectTodayView
.
as_view
()
,
name
=
'nonstop-today'
),
url
(
r
'^tracks/(?P<pk>\d+)/$'
,
TrackDetailView
.
as_view
(),
name
=
'track-view'
),
url
(
r
'^artists/$'
,
ArtistListView
.
as_view
(),
name
=
'artist-list'
),
url
(
r
'^artists/(?P<pk>\d+)/$'
,
ArtistDetailView
.
as_view
(),
name
=
'artist-view'
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment