forked from mirrors/bookwyrm
Move user header into snippets
This commit is contained in:
parent
681ebd136a
commit
8550cbc710
6 changed files with 5 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
||||||
{% extends 'layout.html' %}
|
{% extends 'layout.html' %}
|
||||||
{% load fr_display %}
|
{% load fr_display %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'user_header.html' with user=user %}
|
{% include 'snippets/user_header.html' with user=user %}
|
||||||
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h2 class="title">Followers</h2>
|
<h2 class="title">Followers</h2>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends 'layout.html' %}
|
{% extends 'layout.html' %}
|
||||||
{% load fr_display %}
|
{% load fr_display %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'user_header.html' %}
|
{% include 'snippets/user_header.html' with user=user %}
|
||||||
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h2 class="title">Following</h2>
|
<h2 class="title">Following</h2>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends 'layout.html' %}
|
{% extends 'layout.html' %}
|
||||||
{% load fr_display %}
|
{% load fr_display %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'user_header.html' with user=user %}
|
{% include 'snippets/user_header.html' with user=user %}
|
||||||
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
{% extends 'layout.html' %}
|
{% extends 'layout.html' %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="block">
|
{% include 'snippets/user_header.html' with user=user %}
|
||||||
{% include 'user_header.html' with user=user %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h2 class="title">Shelves</h2>
|
<h2 class="title">Shelves</h2>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends 'layout.html' %}
|
{% extends 'layout.html' %}
|
||||||
{% load fr_display %}
|
{% load fr_display %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'user_header.html' with user=user %}
|
{% include 'snippets/user_header.html' with user=user %}
|
||||||
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
|
|
Loading…
Reference in a new issue