mirror of
https://github.com/tjsga/studyguides.git
synced 2025-04-05 03:40:16 -04:00
Link to course on home page
This commit is contained in:
parent
74bacca1e3
commit
6105a077b7
|
@ -1,7 +1,8 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-14 18:22
|
# Generated by Django 3.1.2 on 2020-10-15 19:30
|
||||||
|
|
||||||
import django.core.validators
|
import django.core.validators
|
||||||
from django.db import migrations, models
|
from django.db import migrations, models
|
||||||
|
import django.db.models.deletion
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
@ -17,14 +18,7 @@ class Migration(migrations.Migration):
|
||||||
fields=[
|
fields=[
|
||||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||||
('name', models.CharField(max_length=100, unique=True)),
|
('name', models.CharField(max_length=100, unique=True)),
|
||||||
],
|
('url', models.CharField(max_length=20, unique=True, validators=[django.core.validators.RegexValidator(message='Only alphanumeric, dashes, and underscores allowed', regex='^[a-zA-Z0-9_\\-]+$')])),
|
||||||
),
|
|
||||||
migrations.CreateModel(
|
|
||||||
name='Guide',
|
|
||||||
fields=[
|
|
||||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
||||||
('name', models.CharField(max_length=100)),
|
|
||||||
('url', models.URLField(max_length=300)),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
migrations.CreateModel(
|
migrations.CreateModel(
|
||||||
|
@ -36,9 +30,14 @@ class Migration(migrations.Migration):
|
||||||
('courses', models.ManyToManyField(related_name='subject', to='courses.Course')),
|
('courses', models.ManyToManyField(related_name='subject', to='courses.Course')),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.CreateModel(
|
||||||
model_name='course',
|
name='Guide',
|
||||||
name='units',
|
fields=[
|
||||||
field=models.ManyToManyField(related_name='course', to='courses.Guide'),
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||||
|
('name', models.CharField(max_length=100)),
|
||||||
|
('teacher', models.CharField(blank=True, max_length=100)),
|
||||||
|
('url', models.URLField(max_length=300)),
|
||||||
|
('course', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='courses.course')),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
# Generated by Django 3.1.2 on 2020-10-15 19:32
|
||||||
|
|
||||||
|
import django.core.validators
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('courses', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='course',
|
||||||
|
name='url',
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='subject',
|
||||||
|
name='url',
|
||||||
|
field=models.CharField(max_length=20, unique=True, validators=[django.core.validators.RegexValidator(message='Only alphanumeric, dashes, and underscores allowed', regex='^[a-zA-Z0-9_\\-]+$')], verbose_name='URL'),
|
||||||
|
),
|
||||||
|
]
|
20
studyguides/apps/courses/migrations/0003_course_url.py
Normal file
20
studyguides/apps/courses/migrations/0003_course_url.py
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# Generated by Django 3.1.2 on 2020-10-15 19:33
|
||||||
|
|
||||||
|
import django.core.validators
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('courses', '0002_auto_20201015_1932'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='course',
|
||||||
|
name='url',
|
||||||
|
field=models.CharField(default='test', max_length=20, unique=True, validators=[django.core.validators.RegexValidator(message='Only alphanumeric, dashes, and underscores allowed', regex='^[a-zA-Z0-9_\\-]+$')], verbose_name='URL'),
|
||||||
|
preserve_default=False,
|
||||||
|
),
|
||||||
|
]
|
|
@ -7,7 +7,7 @@ from django.core.validators import RegexValidator, FileExtensionValidator
|
||||||
class Subject(models.Model):
|
class Subject(models.Model):
|
||||||
id = models.AutoField(primary_key=True)
|
id = models.AutoField(primary_key=True)
|
||||||
name = models.CharField(max_length=100, unique=True)
|
name = models.CharField(max_length=100, unique=True)
|
||||||
url = models.CharField(max_length=20, unique=True, validators=[RegexValidator(
|
url = models.CharField("URL", max_length=20, unique=True, validators=[RegexValidator(
|
||||||
regex="^[a-zA-Z0-9_\-]+$", message="Only alphanumeric, dashes, and underscores allowed")])
|
regex="^[a-zA-Z0-9_\-]+$", message="Only alphanumeric, dashes, and underscores allowed")])
|
||||||
|
|
||||||
courses = models.ManyToManyField("Course", related_name="subject")
|
courses = models.ManyToManyField("Course", related_name="subject")
|
||||||
|
@ -19,6 +19,8 @@ class Subject(models.Model):
|
||||||
class Course(models.Model):
|
class Course(models.Model):
|
||||||
id = models.AutoField(primary_key=True)
|
id = models.AutoField(primary_key=True)
|
||||||
name = models.CharField(max_length=100, unique=True)
|
name = models.CharField(max_length=100, unique=True)
|
||||||
|
url = models.CharField("URL", max_length=20, unique=True, validators=[RegexValidator(
|
||||||
|
regex="^[a-zA-Z0-9_\-]+$", message="Only alphanumeric, dashes, and underscores allowed")])
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name
|
return self.name
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<h2>{{ subject.name }}</h2>
|
<h2>{{ subject.name }}</h2>
|
||||||
|
|
||||||
{% for course in courses %}
|
{% for course in courses %}
|
||||||
<p class="subject"><a href=""/>{{ course.name }}</a></p>
|
<p class="subject"><a href="/{{subject.url}}/{{course.url}}"/>{{ course.name }}</a></p>
|
||||||
|
|
||||||
{% endfor %} {% endfor %}
|
{% endfor %} {% endfor %}
|
||||||
</main>
|
</main>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user