overhauled cards and detail looks, final stretch

This commit is contained in:
Rushil Umaretiya 2020-08-16 05:40:01 -04:00
parent 54dd9e8880
commit cc72ead5d9
14 changed files with 29 additions and 28 deletions

3
.gitignore vendored
View File

@ -16,3 +16,6 @@ pip-delete-this-directory.txt
.venv/
venv/
env/
# WSL
*:Zone.Identifier

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,11 +1,6 @@
@font-face {
font-family: Futura;
src: url(futura.ttf);
}
@font-face {
font-family: 'Segoe UI';
src: url('Segoe UI.ttf');
src: url('fonts/Segoe UI.woff');
}
body {

View File

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

View File

@ -1,22 +1,26 @@
{% extends "news/base.html" %}
{% block content %}
<article class="media content-section">
<img class="rounded-circle article-img" src="{{ object.author.profile.profile_pic.url}}" alt="Profile Picture">
<div class="media-body">
<div class="article-metadata">
<a class="mr-2" href="{% url 'user-articles' object.author.username %}">{{ object.author.get_full_name }}</a>
<small class="text-muted">@{{ object.author }} · {{ object.date_published }}</small>
<a class="btn btn-secondary btn-sm mt-1 mb-1" href="{% url 'home' %}">Back</a>
<h1>{{ article.headline }}</h1>
<figure class="figure">
<img src="{{ object.header.url }}" class="float-center figure-img img-fluid rounded" alt="Article Header">
<figcaption class="figure-caption">{{ object.header_caption }}</figcaption>
</figure>
{% if object.author == user %}
<div>
<a class="btn btn-secondary btn-sm mt-1 mb-1" href="{% url 'article-update' object.id %}">Edit article</a>
<a class="btn btn-danger btn-sm mt-1 mb-1" href="{% url 'article-delete' object.id %}">Delete article</a>
<div class="media-body">
<div class="article-metadata pb-2">
<img class="rounded-circle article-img" src="{{ object.author.profile.profile_pic.url}}" alt="Profile Picture">
<a class="mr-2" href="{% url 'user-articles' object.author.username %}">{{ object.author.get_full_name }}</a>
<small class="text-muted">@{{ object.author }} · {{ object.date_published }}</small>
{% if object.author == user %}
<div>
<a class="btn btn-secondary btn-sm mt-1 mb-1" href="{% url 'article-update' object.id %}">Edit article</a>
<a class="btn btn-danger btn-sm mt-1 mb-1" href="{% url 'article-delete' object.id %}">Delete article</a>
</div>
{% endif %}
</div>
{% endif %}
</div>
<img class="img-fluid" src="{{ object.header.url }}">
<p class="article-content font-weight-light">{{ article.content|safe }}</p>
</div>
<p class="article-content font-weight-light">{{ article.content|safe }}</p>
</div>
</article>
{% endblock content %}

View File

@ -14,8 +14,8 @@
<!-- Font Awesome -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Favicon -->
<link rel="shortcut icon" href="{% static 'news/favicon2.ico' %}" type="image/x-icon">
<link rel="icon" href="{% static 'news/favicon2.ico' %}/favicon2.ico" type="image/x-icon">
<link rel="shortcut icon" href="{% static 'news/favicon.ico' %}" type="image/x-icon">
<link rel="icon" href="{% static 'news/favicon.ico' %}" type="image/x-icon">
<title>NewViewsNews</title>

View File

@ -6,8 +6,8 @@
<div class="col-lg-4 col-sm-6 mb-4" style="margin-top: 2%">
<div class="card shadow border-0 h-100"><a href="">
<img src="{{ article.header.url }}" alt="..." class="img-fluid card-img-top"></a>
<div class="card-body"><a href="" class="text-uppercase text-muted text-sm letter-spacing-2">{{ post.category }} </a>
<h5 class="my-2"><a href="post.html" class="text-dark">{{ article.headline }}</a></h5>
<div class="card-body"><a href="{% url 'article-detail' article.id %}" class="text-uppercase text-muted text-sm letter-spacing-2">{{ article.tag }} </a>
<h5 class="my-2"><a href="{% url 'article-detail' article.id %}" class="nounderline text-dark">{{ article.headline }}</a></h5>
<a href="{% url 'user-articles' article.author.username %}">{{ article.author.get_full_name }}<small class="text-muted"> · @{{ article.author }} · {{ article.date_published }}</small></a>
<p class="my-2 text-muted text-sm">{{ article.content|safe|truncatechars_html:70|linebreaks }}</p>
</div>

View File

@ -82,7 +82,7 @@
<button type="submit" class="btn btn-outline-info">Save changes</button>
</form>
<hr>
<canvas class="mx-auto" id="compass" width="500" height="500" style="border:1px solid #000000;">
<canvas class="float-center mx-auto" id="compass" width="500" height="500" style="border:1px solid #000000;">
Your browser does not support the HTML canvas tag.
</canvas>

View File

@ -97,7 +97,6 @@ def profile(request):
valueX = user.profile.economicScore * 2.5 + 250
valueY = user.profile.socialScore * -2.5 + 250
print("VALUEX IS " + str(valueX))
context = {
'userForm': userForm,