Skip to content

Commit

Permalink
Increased heading from <h3> to <h2> on 'Existing Data Tracking Tool' …
Browse files Browse the repository at this point in the history
…to match other 'tabs/pages' in app...
  • Loading branch information
dyoung11 committed Feb 25, 2020
1 parent 20e5995 commit c70ebb8
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{% block content %}
<div class="container">
<h3 class="row">Existing Data Tracking Tool</h3>
<h2 class="row">Existing Data Tracking Tool</h2>
<p class="row">
This tool has been developed to track existing data for 'Plastics Projects' under the new StRAP's
assigned to the EDAB branch. Guidance for using data from other sources is available from your Division
Expand Down
20 changes: 20 additions & 0 deletions DataSearch/flowsa/migrations/0004_auto_20200225_0550.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 3.0.3 on 2020-02-25 10:50

import constants.utils
import django.core.files.storage
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('flowsa', '0003_auto_20200224_1629'),
]

operations = [
migrations.AlterField(
model_name='upload',
name='file',
field=models.FileField(blank=True, null=True, storage=django.core.files.storage.FileSystemStorage(base_url='/uploads', location='.\\DataSearch\\uploads'), upload_to=constants.utils.get_flowsa_storage_path),
),
]
20 changes: 20 additions & 0 deletions DataSearch/scifinder/migrations/0004_auto_20200225_0550.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 3.0.3 on 2020-02-25 10:50

import constants.utils
import django.core.files.storage
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('scifinder', '0003_auto_20200224_1629'),
]

operations = [
migrations.AlterField(
model_name='upload',
name='file',
field=models.FileField(blank=True, null=True, storage=django.core.files.storage.FileSystemStorage(base_url='/uploads', location='.\\DataSearch\\uploads'), upload_to=constants.utils.get_scifinder_storage_path),
),
]

0 comments on commit c70ebb8

Please sign in to comment.