19 lines
470 B
HTML
19 lines
470 B
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
{% block content %}
|
|
<div class="container-fluid">
|
|
|
|
<!-- Breadcrumbs-->
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a href="index.html">Dashboard</a>
|
|
</li>
|
|
<li class="breadcrumb-item active">Blank Page</li>
|
|
</ol>
|
|
|
|
<!-- Page Content -->
|
|
<h1>Welcome {{ request.user.username }}!</h1>
|
|
<hr>
|
|
|
|
</div>
|
|
{% endblock %} |