mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-03 13:14:30 +03:00
Update url tag
This commit is contained in:
parent
1c28562397
commit
eeed7f7cca
|
@ -1,3 +1,4 @@
|
||||||
|
{% load url from future %}
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
@ -23,10 +24,10 @@
|
||||||
{% block userlinks %}
|
{% block userlinks %}
|
||||||
{% if user.is_active %}
|
{% if user.is_active %}
|
||||||
Welcome, {{ user }}.
|
Welcome, {{ user }}.
|
||||||
<a href='{% url djangorestframework:logout %}?next={{ request.path }}'>Log out</a>
|
<a href='{% url 'djangorestframework:logout' %}?next={{ request.path }}'>Log out</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
Anonymous
|
Anonymous
|
||||||
<a href='{% url djangorestframework:login %}?next={{ request.path }}'>Log in</a>
|
<a href='{% url 'djangorestframework:login' %}?next={{ request.path }}'>Log in</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
{% load url from future %}
|
||||||
{% load static %}
|
{% load static %}
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
|
@ -17,7 +18,7 @@
|
||||||
|
|
||||||
<div id="content" class="colM">
|
<div id="content" class="colM">
|
||||||
<div id="content-main">
|
<div id="content-main">
|
||||||
<form method="post" action="{% url djangorestframework:login %}" id="login-form">
|
<form method="post" action="{% url 'djangorestframework:login' %}" id="login-form">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="id_username">Username:</label> {{ form.username }}
|
<label for="id_username">Username:</label> {{ form.username }}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user