{% extends "base.html" %} {% block title %}Admin Dashboard{% endblock %} {% block content %}

Admin Dashboard

Manage your posts and projects with ease.

Projects

New Project
{% for projectpost in projectpost %} {% else %} {% endfor %}
Title Category Actions
{{ projectpost.title }} {% if projectpost.draft %} Draft {% endif %} {{ projectpost.category }} Preview Edit {% if projectpost.draft %}
{% endif %}
No projects found.

Blog Posts

New Blog Post
{% for blogpost in blogpost %} {% else %} {% endfor %}
Title Category Actions
{{ blogpost.title }} {% if blogpost.draft %} Draft {% endif %} {{ blogpost.category }} Preview Edit {% if blogpost.draft %}
{% endif %}
No blog posts found.
{% endblock %}