summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-06-19 09:38:06 +0000
committerubq323 <ubq323>2021-06-19 09:38:06 +0000
commit13fae0466c6d6863833fda6fef2754db9c56b12b (patch)
tree26f358926700aba421ac0320bd51809def365af2 /apioforum/templates
parente7f520b6865482cab89b55f70f8c41bec6ca30b3 (diff)
possibly it is nicer if all username links look the sameuser-profiles
Diffstat (limited to 'apioforum/templates')
-rw-r--r--apioforum/templates/base.html2
-rw-r--r--apioforum/templates/common.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/apioforum/templates/base.html b/apioforum/templates/base.html
index 3eb112e..ad4c3b2 100644
--- a/apioforum/templates/base.html
+++ b/apioforum/templates/base.html
@@ -19,7 +19,7 @@
<p><a href="{{url_for('index')}}">home</a></p>
{% if g.user %}
- <p><a href="{{url_for('user.view_user', username=g.user)}}">{{g.user}}</a></p>
+ <p><a class="username" href="{{url_for('user.view_user', username=g.user)}}">{{g.user}}</a></p>
{% if is_admin %}
<p><a href="{{url_for('admin.admin_page')}}">admin</a></p>
diff --git a/apioforum/templates/common.html b/apioforum/templates/common.html
index c484a9d..3db9974 100644
--- a/apioforum/templates/common.html
+++ b/apioforum/templates/common.html
@@ -6,7 +6,7 @@
<div class="post" id="post_{{post.id}}">
<div class="post-heading">
<span class="post-heading-a">
- <span class="post-heading-em">{{disp_user(post.author)}}</span>
+ {{disp_user(post.author)}}
{{ts(post.created)}}
{% if post.edited %}
(edited {{ts(post.updated)}})