diff --git a/issues/templates/issues/detail.html b/issues/templates/issues/detail.html index e25b70d..42ea47c 100644 --- a/issues/templates/issues/detail.html +++ b/issues/templates/issues/detail.html @@ -1,12 +1,6 @@ -{% extends "base.html" %} - -{% block title %}Issue: {{ issue.title }}{% endblock %} - -{% block content %} -
- Project: {{ issue.project }}
- Created: {{ issue.create_date }}
-
{{ issue.text }}
-{% endblock %} +
+ Project: {{ issue.project }}
+ Created: {{ issue.create_date }}
+
{{ issue.text }}
\ No newline at end of file diff --git a/issues/templates/issues/index.html b/issues/templates/issues/index.html index 9eb3e07..c109698 100644 --- a/issues/templates/issues/index.html +++ b/issues/templates/issues/index.html @@ -1,19 +1,13 @@ -{% extends "base.html" %} +{% if issue_list %} +No issues.
+{% endif %} -{% block title %}Issues{% endblock %} - -{% block content %} - {% if issue_list %} -No issues.
- {% endif %} - - -{% endblock %} + diff --git a/issues/templates/issues/new.html b/issues/templates/issues/new.html index 0e6d87c..e9b9899 100644 --- a/issues/templates/issues/new.html +++ b/issues/templates/issues/new.html @@ -1,21 +1,15 @@ -{% extends "base.html" %} +{{ error_message }}
{% endif %} -{% block content %} -{{ error_message }}
{% endif %} - - -{% endblock %} + diff --git a/projects/templates/projects/index.html b/projects/templates/projects/index.html index ee9bb64..b64c0da 100644 --- a/projects/templates/projects/index.html +++ b/projects/templates/projects/index.html @@ -1,17 +1,11 @@ -{% extends "base.html" %} - -{% block title %}Projects{% endblock %} - -{% block content %} - {% if project_list %} -No projects.
- {% endif %} -{% endblock %} +{% if project_list %} +No projects.
+{% endif %} \ No newline at end of file diff --git a/projects/templates/projects/view.html b/projects/templates/projects/view.html index afae756..e38e16f 100644 --- a/projects/templates/projects/view.html +++ b/projects/templates/projects/view.html @@ -1,21 +1,15 @@ -{% extends "base.html" %} +{{ project.description }}
-{% block title %}Project: {{ project.name }}{% endblock %} - -{% block content %} -{{ project.description }}
- -This project has no issues yet.
- {% endif %} -{% endblock %} +This project has no issues yet.
+{% endif %} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html deleted file mode 100644 index c54107f..0000000 --- a/templates/base.html +++ /dev/null @@ -1,12 +0,0 @@ - - - -