Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cwblog
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
group20
cwblog
Commits
ec468d93
Commit
ec468d93
authored
2 years ago
by
Saravanan, Mukesh (PG/T - Comp Sci & Elec Eng)
Browse files
Options
Downloads
Patches
Plain Diff
Replace post.html
parent
21b88a37
No related branches found
No related tags found
1 merge request
!32
Final frontend
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/application/templates/forum/post.html
+174
-71
174 additions, 71 deletions
frontend/application/templates/forum/post.html
with
174 additions
and
71 deletions
frontend/application/templates/forum/post.html
+
174
−
71
View file @
ec468d93
{# application/templates/forum/post.html #}
{# application/templates/forum/post.html #}
<a
class=
"
btn btn--link
"
href=
"{{ url_for('frontend.get_posts') }}"
>
Home
</a>
<
<
a
class=
"
home-btn
"
href=
"{{ url_for('frontend.get_posts') }}"
>
Home
</a>
{% from 'macros.html' import displayField %}
{% from 'macros.html' import displayField %}
<br>
<br>
<br>
<br>
<div>
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<ul>
{% for category, message in messages %}
<li
class=
"{{ category }}"
>
{{ message }}
</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
</div>
<section
class=
"row latest"
>
<div
class=
"row latest"
>
<!-- START posts -->
<!-- START posts -->
<div
class=
"col-md-8 offset-md-2"
>
<div
class=
"post-container"
>
<div
class=
"tile tile--wide"
>
<div
class=
"tile tile--wide"
>
<div
class=
"tile__content"
>
<div
class=
"tile__content"
>
<div
class=
"tile__author"
>
<div
class=
"tile__author"
>
<img
class=
"rounded-circle"
width=
"45"
src=
"images/users/{{ owner_image }}"
>
<img
class=
"rounded-circle"
width=
"45"
src=
"images/users/{{ owner_image }}"
>
<h2
class=
"tile__title"
><a
href=
"{{ url_for('frontend.display_user', user_id=post.user_id) }}"
>
{{ post['user_name'] }}
</a></h2>
<h2
class=
"tile__title"
><a
href=
"{{ url_for('frontend.display_user', user_id=post.user_id) }}"
>
{{ post['user_name'] }}
</a></h2>
</div>
</div>
<div
class=
"tile__header"
>
<div
class=
"tile__header"
>
{{ post['title'] }}
{{ post['title'] }}
</div>
</div>
<div
class=
"tile__text"
>
<div
class=
"tile__text"
>
<p>
{{ post['content'] | safe }}
</p>
<p>
{{ post['content'] | safe }}
</p>
</div>
</div>
{% if post['image_url'] != '' %}
{% if post['image_url'] != '' %}
<img
class=
"post-image"
src=
"images/{{ post['image_url'] }}"
>
<img
class=
"post-image"
src=
"images/{{ post['image_url'] }}"
>
{% endif %}
{% endif %}
<p
class=
"tile__date"
>
{{ post['date_added'] }}
</p>
<p
class=
"tile__date"
>
{{ post['date_added'] }}
</p>
{% if current_user_id == post['user_id'] %}
{% if current_user_id == post['user_id'] %}
<div
class=
"tile__buttons"
>
<div
class=
"tile__buttons"
>
<a
class=
"tile__btn"
href=
"{{ url_for('frontend.delete_post', post_id=post.id) }}"
>
Delete Post
</a>
<a
class=
"tile__btn"
href=
"{{ url_for('frontend.delete_post', post_id=post.id) }}"
>
Delete Post
</a>
{% endif %}
</div>
</div>
</div>
{% endif %}
</div>
</div>
</div>
</div>
<!-- END posts -->
<!-- END posts -->
<!-- START comments -->
<!-- START comments -->
{% block title %} COMMENTS {% endblock %}
{% if comments %}
<div
class=
"comment-container"
style=
"overflow-y: auto; height: 300px;>
<h3 class="
comment__title
"
>
COMMENTS
</h3>
{% for comment,image in comments %}
{% if comments %}
{% for comment, image in comments %}
<div
class=
"comment__author"
>
<div
class=
"comment__box{% if current_user_id == comment['user_id'] %} comment__box--self{% else %} comment__box--other{% endif %}"
>
<div
class=
"comment__author"
>
<div
class=
"comment__bubble{% if current_user_id == comment['user_id'] %} comment__bubble--self{% endif %}"
>
<div
class=
"comment__avatar{% if current_user_id == comment['user_id'] %} comment__avatar--self{% endif %}"
>
{% if current_user_id != comment['user_id'] %}
<img
class=
"rounded-circle"
width=
"45"
src=
"images/users/{{ image }}"
>
<img
class=
"rounded-circle"
width=
"45"
src=
"images/users/{{ image }}"
>
<p
class=
"comment__title"
>
{{ comment['user_name']}}
</p>
{% endif %}
</div>
<div
class=
"comment__text"
>
<p>
{{ comment['content'] | safe }}
</p>
</div>
<div
class=
"comment__header"
>
<p
class=
"tile__date"
>
{{ comment['date_added'] }}
</p>
</div>
{% if current_user_id == comment['user_id'] %}
<div
class=
"tile__buttons"
>
<a
class=
"tile__btn"
href=
"{{ url_for('frontend.delete_comment', post_id=post.id, comment_id=comment.id) }}"
>
Delete Comment
</a>
</div>
</div>
{% if current_user_id != comment['user_id'] %}
<p
class=
"comment__name"
>
{{ comment['user_name']}}
</p>
{% endif %}
{% endif %}
<p
class=
"comment__text"
>
{{ comment['content'] | safe }}
</p>
<div
class=
"comment__date"
>
<span>
{{ comment['date_added'] }}
</span>
{% if current_user_id == comment['user_id'] %}
<a
class=
"comment__btn"
href=
"{{ url_for('frontend.delete_comment', post_id=post.id, comment_id=comment.id) }}"
>
Delete Comment
</a>
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
{% endfor %}
{% endif %}
<div
class=
"comment__form-container"
>
<form
class=
"comment__form"
action=
""
method=
"POST"
>
{{ form.csrf_token }}
{{ displayField(form.content, 'Type comment here...') }}
<button
class=
"btn btn--solid post-btn"
type=
"submit"
>
SUBMIT
</button>
</form>
{{ ckeditor.load(pkg_type="basic") }}
{{ ckeditor.config(name='content') }}
</div>
</div>
</div>
</div>
{% endif %}
<!-- END comments -->
<form
class=
"comment__form"
action=
""
method=
"POST"
>
{{ form.csrf_token }}
{{ displayField(form.content, 'Type comment here...') }}
<button
class=
"btn btn--solid post-btn"
type=
"submit"
>
SUBMIT
</button>
</form>
{{ ckeditor.load(pkg_type="basic") }}
{{ ckeditor.config(name='content') }}
<!-- END comments -->
</div>
<style>
.latest
{
padding
:
40px
0
;
}
.tile
{
background-color
:
#fff
;
border-radius
:
5px
;
box-shadow
:
0
2px
6px
rgba
(
0
,
0
,
0
,
0.1
);
padding
:
40px
;
position
:
relative
;
overflow
:
hidden
;
transition
:
all
.3s
ease-in-out
;
}
.tile
:hover
{
transform
:
translateY
(
-5px
);
box-shadow
:
0
5px
15px
rgba
(
0
,
0
,
0
,
0.2
);
}
.tile__author
{
display
:
flex
;
align-items
:
center
;
margin-bottom
:
20px
;
}
.tile__author
img
{
margin-right
:
15px
;
}
.tile__header
{
font-size
:
28px
;
font-weight
:
700
;
margin-bottom
:
20px
;
}
.tile__text
{
font-size
:
18px
;
line-height
:
1.5
;
margin-bottom
:
20px
;
}
.post-image
{
max-width
:
100%
;
margin-bottom
:
20px
;
}
.tile__date
{
font-size
:
14px
;
color
:
#a9a9a9
;
margin-bottom
:
10px
;
}
.comment__box
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
space-between
;
margin-bottom
:
20px
;
}
.comment__box--self
{
flex-direction
:
row-reverse
;
}
.comment__box--other
{
flex-direction
:
row
;
}
.comment__avatar
{
margin-bottom
:
5px
;
margin-right
:
10px
;
vertical-align
:
middle
;
}
.comment__avatar
img
{
border-radius
:
50%
;
}
.comment__bubble
{
display
:
flex
;
flex-direction
:
column
;
align-items
:
flex-start
;
background-color
:
#61b8f2
;
padding
:
10px
;
border-radius
:
10px
;
font-size
:
16px
;
line-height
:
0
;
max-width
:
100%
;
position
:
relative
;
}
.comment__bubble--self
{
align-items
:
flex-end
;
background-color
:
#dcf8c6
;
}
.comment__name
{
font-weight
:
700
;
margin-bottom
:
5px
;
}
.comment__text
{
margin
:
0
;
}
.comment__date
{
margin-top
:
0px
;
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
font-size
:
14px
;
color
:
#666
;
margin-bottom
:
0
;
}
.comment__form
{
display
:
flex
;
flex-direction
:
column
;
margin-top
:
40px
;
margin-bottom
:
60px
;
}
.post-btn
{
background-color
:
#4CAF50
;
border
:
none
;
color
:
white
;
padding
:
10px
20px
;
border-radius
:
5px
;
cursor
:
pointer
;
font-size
:
16px
;
transition
:
all
0.3s
ease
;
margin-left
:
auto
;
}
.post-btn
:hover
{
background-color
:
#3e8e41
;
}
.home-btn
{
background-color
:
#2196F3
;
color
:
white
;
padding
:
10px
;
border
:
none
;
border-radius
:
5px
;
font-size
:
16px
;
cursor
:
pointer
;
margin-bottom
:
20px
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment