First set of updates from the major "backendification" rewrite #1

Sloučený
bss sloučil 21 commity z větve backend-frameworkification do větve master před 2019-10-11 09:00:37 -05:00
4 změnil soubory, kde provedl 4 přidání a 4 odebrání
Zobrazuji pouze změny commitu d34fb18949 - Zobrazit všechny commity

Zobrazit soubor

@ -11,7 +11,7 @@ admin.sites.site = admin.site
admin.autodiscover()
urlpatterns = [
url(r'^$', TemplateView.as_view(template_name='index.html'), name='home'),
url(r'^$', TemplateView.as_view(template_name='index.html'), name='index'),
url(r'^dice/', include('dice.urls')),
url(r'^dispatch/', include('dispatch.urls')),

Zobrazit soubor

@ -15,7 +15,7 @@
<div class="container">
<div class="navbar-header">
{% block navbarbrand %}
<a class="navbar-brand" href="{% url 'home' %}">{{ site.domain }}</a>
<a class="navbar-brand" href="{% url 'index' %}">{{ site.domain }}</a>
{% endblock %}
<!-- .navbar-toggle is used as the toggle for collapsed navbar content -->

Zobrazit soubor

@ -3,7 +3,7 @@
{% block title %}{{ site.domain }}{% endblock %}
{% block navbarbrand %}
<a class="navbar-brand navbar-brand-active" href="{% url 'home' %}">{{ site.domain }}</a>
<a class="navbar-brand navbar-brand-active" href="{% url 'index' %}">{{ site.domain }}</a>
{% endblock %}
{% block content %}

Zobrazit soubor

@ -5,7 +5,7 @@
{% endblock %}
{% block navbarbrand %}
<a class="navbar-brand navbar-brand-active" href="{% url 'home' %}">{{ site.domain }}</a>
<a class="navbar-brand navbar-brand-active" href="{% url 'index' %}">{{ site.domain }}</a>
{% endblock %}
{% block content %}