Skip to content

Commit

Permalink
no more preventupdate problems; add title to html
Browse files Browse the repository at this point in the history
  • Loading branch information
interrogator committed Dec 4, 2019
1 parent 60282eb commit 6585d69
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion buzzword/templates/nav.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{% load static %}
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="#">Navbar</a>
<span>
<img height="42" src="{{ STATIC_URL }}static/bolt.jpg" width="38" style="display: inline-block; vertical-align: middle; height: 35px;">
<a class="navbar-brand" href="#">buzzword</a>
</span>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
django==3.0.0
django-plotly-dash==1.1.1
django-plotly-dash==1.1.3
dpd-static-support==0.0.4
dash_bootstrap_components==0.7.2
whitenoise==4.1.4
Expand Down
5 changes: 3 additions & 2 deletions start/templates/start/start.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.html" %}

{% block title %}Welcome{% endblock %}
{% block title %}buzzword: home{% endblock %}


{% block content %}
Expand All @@ -9,7 +9,8 @@
On this page will be a navbar, introduction, table of corpora, and potentially the upload/parse space
</p>
<h2>Corpora</h2>

<br>
<br>
{% for corpus in corpora %}
<a href="explore/{{ corpus.slug }}">{{ corpus.name }}</a>
<br>
Expand Down

0 comments on commit 6585d69

Please sign in to comment.