Style bookmark form
This commit is contained in:
parent
e157bcd34f
commit
3b753a601f
@ -55,10 +55,9 @@ class BookmarkForm(forms.ModelForm):
|
|||||||
url = forms.URLField()
|
url = forms.URLField()
|
||||||
# Do not require title and description in form as we fill these automatically if they are empty
|
# Do not require title and description in form as we fill these automatically if they are empty
|
||||||
title = forms.CharField(max_length=512,
|
title = forms.CharField(max_length=512,
|
||||||
required=False,
|
required=False)
|
||||||
widget=forms.TextInput(attrs={'placeholder': auto_fill_placeholder}))
|
|
||||||
description = forms.CharField(required=False,
|
description = forms.CharField(required=False,
|
||||||
widget=forms.Textarea(attrs={'placeholder': auto_fill_placeholder}))
|
widget=forms.Textarea())
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Bookmark
|
model = Bookmark
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
// Font sizes
|
// Font sizes
|
||||||
$html-font-size: 18px !default;
|
$html-font-size: 18px !default;
|
||||||
|
|
||||||
$alternative-color: #f45d00;
|
//$alternative-color: #c84e00;
|
||||||
$alternative-color: #FF84E8;
|
//$alternative-color: #FF84E8;
|
||||||
$alternative-color: #98C1D9;
|
//$alternative-color: #98C1D9;
|
||||||
$alternative-color: #7B287D;
|
//$alternative-color: #7B287D;
|
||||||
$alternative-color: #05a6a3;
|
$alternative-color: #05a6a3;
|
||||||
$alternative-color-dark: darken($alternative-color, 5%);
|
$alternative-color-dark: darken($alternative-color, 5%);
|
||||||
|
|
||||||
|
@ -2,8 +2,14 @@
|
|||||||
{% load bookmarks %}
|
{% load bookmarks %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2>New bookmark</h2>
|
<div class="columns">
|
||||||
<form action="{% url 'bookmarks:edit' bookmark_id %}" method="post">
|
<section class="content-area column col-12">
|
||||||
{% bookmark_form form %}
|
<div class="content-area-header">
|
||||||
</form>
|
<h2>Edit bookmark</h2>
|
||||||
|
</div>
|
||||||
|
<form action="{% url 'bookmarks:edit' bookmark_id %}" method="post" class="col-6" novalidate>
|
||||||
|
{% bookmark_form form %}
|
||||||
|
</form>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,17 +1,26 @@
|
|||||||
|
{% load widget_tweaks %}
|
||||||
|
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<div class="field">
|
<div class="form-group {% if form.url.errors %}has-error{% endif %}">
|
||||||
<label for="{{ form.url.id_for_label }}">URL</label>
|
<label for="{{ form.url.id_for_label }}" class="form-label">URL</label>
|
||||||
{{ form.url }}
|
{{ form.url|add_class:"form-input"|attr:"autofocus" }}
|
||||||
{{ form.url.errors }}
|
{% if form.url.errors %}
|
||||||
|
<div class="form-input-hint">
|
||||||
|
{{ form.url.errors }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="form-group">
|
||||||
<label for="{{ form.title.id_for_label }}">Title</label>
|
<label for="{{ form.title.id_for_label }}" class="form-label">Title</label>
|
||||||
{{ form.title }}
|
{{ form.title|add_class:"form-input"|attr:"placeholder: Leave empty to fill from website metadata" }}
|
||||||
{{ form.title.errors }}
|
{{ form.title.errors }}
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="form-group">
|
||||||
<label for="{{ form.description.id_for_label }}">Description</label>
|
<label for="{{ form.description.id_for_label }}" class="form-label">Description</label>
|
||||||
{{ form.description }}
|
{{ form.description|add_class:"form-input"|attr:"placeholder: Leave empty to fill from website metadata" }}
|
||||||
{{ form.description.errors }}
|
{{ form.description.errors }}
|
||||||
</div>
|
</div>
|
||||||
<input type="submit" value="Save">
|
<div class="form-group mt-2">
|
||||||
|
<input type="submit" value="Save" class="btn btn-primary mr-2">
|
||||||
|
<a href="{% url 'bookmarks:index' %}" class="btn">Nevermind</a>
|
||||||
|
</div>
|
||||||
|
@ -2,8 +2,14 @@
|
|||||||
{% load bookmarks %}
|
{% load bookmarks %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2>New bookmark</h2>
|
<div class="columns">
|
||||||
<form action="{% url 'bookmarks:new' %}" method="post">
|
<section class="content-area column col-12">
|
||||||
{% bookmark_form form %}
|
<div class="content-area-header">
|
||||||
</form>
|
<h2>New bookmark</h2>
|
||||||
|
</div>
|
||||||
|
<form action="{% url 'bookmarks:new' %}" method="post" class="col-6" novalidate>
|
||||||
|
{% bookmark_form form %}
|
||||||
|
</form>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -6,6 +6,7 @@ django-appconf==1.0.3
|
|||||||
django-compressor==2.3
|
django-compressor==2.3
|
||||||
django-picklefield==2.0
|
django-picklefield==2.0
|
||||||
django-sass-processor==0.7.3
|
django-sass-processor==0.7.3
|
||||||
|
django-widget-tweaks==1.4.5
|
||||||
idna==2.8
|
idna==2.8
|
||||||
libsass==0.19.2
|
libsass==0.19.2
|
||||||
pytz==2019.1
|
pytz==2019.1
|
||||||
|
@ -37,6 +37,7 @@ INSTALLED_APPS = [
|
|||||||
'django.contrib.messages',
|
'django.contrib.messages',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
'sass_processor',
|
'sass_processor',
|
||||||
|
'widget_tweaks',
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
|
Loading…
Reference in New Issue
Block a user