This commit is contained in:
Sharad Ahlawat 2020-03-10 15:21:18 -07:00
parent a85a288278
commit 0f240692d2
4 changed files with 38 additions and 41 deletions

View File

@ -5,9 +5,9 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
<meta name="generator" content="Jekyll v3.8.6">
<meta name="description" content="Product Hunt">
<meta name="author" content="Sharad Ahlawat">
<meta name="generator" content="django">
<title>Product Hunt</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.4/examples/album/">
@ -58,7 +58,7 @@
<a class="nav-item nav-link" href="javascript:{document.getElementById('logout').submit()}">Logout</a>
<form id="logout" method="POST" action="{% url 'logout' %}">
{% csrf_token %}
<input type="hidden" />
<input type="hidden"/>
</form>
{% else %}
<a class="nav-item nav-link" href="{% url 'signup' %}">Sign Up</a>
@ -72,11 +72,11 @@
<div class="container">
<br />
<br/>
{% block content %}
{% endblock %}
<br />
<br/>
</div>

View File

@ -2,8 +2,8 @@
{% block content %}
{% if error %}
{{ error }}
<br />
<br />
<br/>
<br/>
{% endif %}
<h1>Create</h1>
<form method="POST" action="{% url 'create' %}" enctype="multipart/form-data">
@ -27,7 +27,7 @@
Body:
<br/>
<input type="textbox" name="body"/>
<br/><br />
<br/><br/>
<input type="submit" value="Add Product" class="btn btn-primary">
</form>
{% endblock %}

View File

@ -13,8 +13,7 @@
<a href="{{ product.url }}"><h1>{{ product.title }}</h1></a>
</div>
</div>
<hr/>
<div class="row">
<div class="row pt-3">
<div class="col-8">
<img src="{{ product.image.url }}" class="img-fluid" \>
</div>
@ -25,17 +24,15 @@
</a>
</div>
</div>
<hr/>
<div class="row">
<div class="row pt-3">
<div class="col-4">
<h4>Hunted by: {{ product.hunter.username }}</h4>
<h4><span class="oi oi-magnifying-glass"></span> Hunted by: {{ product.hunter.username }}</h4>
</div>
<div class="col-4 text-right">
<h4>{{ product.pubdate_pretty }}</h4>
<h4><span class="oi oi-clock"></span> {{ product.pubdate_pretty }}</h4>
</div>
</div>
<hr/>
<div class="row">
<div class="row pt-3">
<div class="col-8">
<p>{{ product.body }}</p>
</div>

View File

@ -9,7 +9,7 @@ def home(request):
return render(request, 'products/home.html', {'products': products})
@login_required()
@login_required(login_url='/accounts/signup')
def create(request):
if request.method == 'POST':
if request.POST['title'] and request.POST['url'] and request.FILES['image'] and request.FILES['icon'] and \
@ -38,7 +38,7 @@ def detail(request, product_id):
return render(request, 'products/detail.html', {'product': product})
@login_required()
@login_required(login_url='/accounts/signup')
def upvote(request, product_id):
if request.method == 'POST':
product = get_object_or_404(Product, pk=product_id)