diff --git a/systers_portal/static/css/style.css b/systers_portal/static/css/style.css index 44f4112c..1792c47a 100755 --- a/systers_portal/static/css/style.css +++ b/systers_portal/static/css/style.css @@ -584,6 +584,15 @@ table.decoration-none tr a { padding-top: 25px; } +.glyphicon { + float: right; + color: black; +} + +.glyphicon-pencil { + right: 10px; +} + .map-container { height:400px; padding-right: 15px; @@ -606,6 +615,7 @@ table.decoration-none tr a { word-wrap: break-word; margin-bottom: 40px; } + /* Commentbox CSS ------------------------------------------------- */ .comment-box{ @@ -615,6 +625,20 @@ table.decoration-none tr a { font-family: Georgia, "Times New Roman", Times, serif; font-size: 1.0em; line-height: 1.0em; +} + +.edit .delete { + background-color: #fff; + color: black; + padding: 10px; + border: none; + cursor: pointer; + float: right; +} + +.commentbox .details{ + text-decoration: none; + /* webkit-text-size-adjust: 100%;*/ } diff --git a/systers_portal/templates/meetup/meetup.html b/systers_portal/templates/meetup/meetup.html index a6b66df7..7354cbd9 100644 --- a/systers_portal/templates/meetup/meetup.html +++ b/systers_portal/templates/meetup/meetup.html @@ -48,15 +48,16 @@

Discussion Area

{% endif %} {% for comment in comments %} -
- {{ comment.author}} -
-
{{ comment.body }}
-
+
+ {{ comment.author}} + commented on {{ comment.date_created}} {% if user == comment.author.user %} - edit - delete + + {% endif %} +
+

{{ comment.body }}

+
{% endfor %} {% endblock %} diff --git a/systers_portal/templates/meetup/support_request.html b/systers_portal/templates/meetup/support_request.html index 006d7fb7..a746b822 100644 --- a/systers_portal/templates/meetup/support_request.html +++ b/systers_portal/templates/meetup/support_request.html @@ -38,15 +38,16 @@

Discussion Area

{% endif %} {% for comment in comments %} -
- {{ comment.author}} -
-
{{ comment.body }}
-
+
+ {{ comment.author}} + commented on {{ comment.date_created}} {% if user == comment.author.user %} - edit - delete + + {% endif %} +
+

{{ comment.body }}

+
{% endfor %} -{% endblock %} +{% endblock %} \ No newline at end of file