diff --git a/atlas/templates/atlas/atlas_confirm_delete.html b/atlas/templates/atlas/atlas_confirm_delete.html new file mode 100644 index 00000000..10ac7f23 --- /dev/null +++ b/atlas/templates/atlas/atlas_confirm_delete.html @@ -0,0 +1 @@ +{% include 'confirm_delete.html' %} \ No newline at end of file diff --git a/atlas/templates/atlas/author_list.html b/atlas/templates/atlas/author_list.html new file mode 100755 index 00000000..c9f24e20 --- /dev/null +++ b/atlas/templates/atlas/author_list.html @@ -0,0 +1,8 @@ +{% extends 'atlas/base.html' %} + +{% block content %} + +{% for author in authors %} +
Author: {{author.username}},
+{% endfor %} +{% endblock %} \ No newline at end of file diff --git a/atlas/templates/atlas/base.html b/atlas/templates/atlas/base.html new file mode 100755 index 00000000..0ae55420 --- /dev/null +++ b/atlas/templates/atlas/base.html @@ -0,0 +1,28 @@ +{% extends 'base.html' %} + +{% block title %} +Longs +{% endblock %} + +{% block css %} +{% endblock %} + +{% block js %} +{% endblock %} + + + +{% block content %} +{% endblock %} +{% block navigation %} +Longs: +{% if request.user.is_authenticated %} +Cases / +Series / +Create Case / +Create Series +{% endif %} +{% comment %} +Questions by: + {% endcomment %} +{% endblock %} \ No newline at end of file diff --git a/atlas/templates/atlas/case_detail.html b/atlas/templates/atlas/case_detail.html new file mode 100755 index 00000000..c5be316f --- /dev/null +++ b/atlas/templates/atlas/case_detail.html @@ -0,0 +1,20 @@ +{% extends 'atlas/base.html' %} + +{% block content %} + + + +Description: {{ question.description }}
+ +History: {{ question.history }}
+ +Author(s): {% for author in question.author.all %} {{author}}, {% endfor %}
+Checked by: {% for verified in question.verified.all %} {{verified}}, {% endfor %}
+ {% comment %}Scrapped: {{ question.scrapped }} (toggle) {% endcomment %} + +
+ Findings
+ {{ question.findings | safe}}
+
Total image size: {{series.get_total_image_size|filesizeformat}}
+ +