Update quote style

This commit is contained in:
Roberto Rosario
2014-07-03 00:15:52 -04:00
parent 3db1e35c19
commit e2208207fc

View File

@@ -1,5 +1,7 @@
{% extends "web_theme_base.html" %}
{% extends 'web_theme_base.html' %}
{% load i18n %}
{% load theme_tags %}
{% load autoadmin_tags %}
@@ -10,16 +12,16 @@
{% endif %}
{% endblock %}
{% block html_title %}{% trans "Login" %}{% endblock %}
{% block html_title %}{% trans 'Login' %}{% endblock %}
{% if user.is_authenticated %}
{% block web_theme_content %}
{% get_login_redirect_url %}
<div class="content">
<h2 class="title">{% trans "You are already logged in" %}</h2>
<div class="content">
<h2 class="title">{% trans 'You are already logged in' %}</h2>
<div class="inner">
<p>
{% trans "Redirecting you to the website entry point in 5 seconds." %}
{% trans 'Redirecting you to the website entry point in 5 seconds.' %}
<p>
</p>
{% blocktrans %}Or click <a href="{{ LOGIN_REDIRECT_URL }}">here</a> if redirection doesn't work.{% endblocktrans %}
@@ -35,11 +37,11 @@
<div class="block" id="block-login">
<h2>{% trans "First time login" %}</h2>
<div class="content login">
<p>{% trans "You have just finished installing <strong>Mayan EDMS</strong>, congratulations!" %}</p>
<p>{% trans "Login using the following credentials:" %}</p>
<p>{% blocktrans with auto_admin_properties.account as account %}Username: <strong>{{ account }}</strong>{% endblocktrans %}</p>
<p>{% trans 'You have just finished installing <strong>Mayan EDMS</strong>, congratulations!' %}</p>
<p>{% trans 'Login using the following credentials:' %}</p>
<p>{% blocktrans with auto_admin_properties.account as account %}Username: <strong>{{ account }}</strong>{% endblocktrans %}</p>
<p>{% blocktrans with auto_admin_properties.password as password %}Password: <strong>{{ password }}</strong>{% endblocktrans %}</p>
<p>{% trans "Be sure to change the password to increase security and to disable this message." %}</p>
<p>{% trans 'Be sure to change the password to increase security and to disable this message.' %}</p>
</div>
</div>
</div>
@@ -47,15 +49,15 @@
<div id="box">
<h1>{% block project_name %}{% endblock %}</h1>
<div class="block" id="block-login">
<h2>{% trans "Login" %}</h2>
<h2>{% trans 'Login' %}</h2>
<div class="content login">
<form action="." method="post" class="form login">{% csrf_token %}
<div class="group wat-cf">
{% include "generic_form_instance.html" %}
{% include 'generic_form_instance.html' %}
<input type="hidden" name="next" value="{{ next|escape }}" />
<div class="group navform wat-cf">
<button class="button" type="submit">
<img src="{{ STATIC_URL }}web_theme_media/images/icons/key.png" alt="Save" /> Login
<img src="{{ STATIC_URL }}web_theme_media/images/icons/key.png" alt="Save" /> {% trans 'Login' %}
</button>
</div>
</form>
@@ -64,7 +66,7 @@
</div>
{% get_web_theme_setting "VERBOSE_LOGIN" as verbose_login %}
{% if verbose_login %}
{% include "verbose_login.html" %}
{% include 'verbose_login.html' %}
{% endif %}
{% endblock %}
{% endif %}