.
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
<span class="series-block">
|
||||
<span>
|
||||
Series {{ forloop.counter }}:
|
||||
<a href="{% url 'atlas:atlas_series_detail' pk=series.pk %}">
|
||||
<a href="{% url 'atlas:series_detail' pk=series.pk %}">
|
||||
{{series.get_block}}
|
||||
</a>
|
||||
|
||||
@@ -23,14 +23,14 @@
|
||||
</span>
|
||||
</span>
|
||||
{% endfor %}
|
||||
<a href="{% url 'atlas:atlas_series_id_create' pk=case.pk %}">Add new series</a><br />
|
||||
<a href="{% url 'atlas:series_id_create' pk=case.pk %}">Add new series</a><br />
|
||||
</div>
|
||||
<p><b>Author(s):</b> {% for author in case.author.all %} <a
|
||||
href="{% url 'atlas:author_detail' pk=author.pk %}">{{author}}</a>, {% endfor %}</p>
|
||||
<p><b>Checked by:</b> {% for verified in case.verified.all %} <a
|
||||
href="{% url 'atlas:verified_detail' pk=verified.pk %}">{{verified}}</a>, {% endfor %}</p>
|
||||
{% comment %} <p><b>Scrapped:</b> {{ case.scrapped }} <a
|
||||
href="{% url 'atlas:atlas_scrap' pk=case.pk %}">(toggle)</a> {% endcomment %}
|
||||
href="{% url 'atlas:case_scrap' pk=case.pk %}">(toggle)</a> {% endcomment %}
|
||||
|
||||
<div class="atlas-answer">
|
||||
<p class="pre-whitespace">
|
||||
|
||||
+1
-1
@@ -46,7 +46,7 @@ urlpatterns = [
|
||||
path("question/<int:pk>/clone", views.AtlasClone.as_view(), name="case_clone"),
|
||||
# path("verified/", views.verified, name="verified"),
|
||||
# path("all_questions/", views.all_questions, name="all_questions"),
|
||||
path("question/<int:pk>/scrap", views.atlas_scrap, name="atlas_scrap"),
|
||||
path("question/<int:pk>/scrap", views.atlas_scrap, name="case_scrap"),
|
||||
path("question/<int:pk>/delete", views.AtlasDelete.as_view(), name="case_delete"),
|
||||
path("create/", views.AtlasCreate.as_view(), name="create"),
|
||||
path("create/series", views.SeriesCreate.as_view(), name="series_create"),
|
||||
|
||||
Reference in New Issue
Block a user