You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2021/07/23 13:25:04 UTC

[airavata-django-portal] branch master updated: tutorial: clarify why we generate custom Django app code as prerequisite to custom output view provider

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/master by this push:
     new e6f8735  tutorial: clarify why we generate custom Django app code as prerequisite to custom output view provider
e6f8735 is described below

commit e6f8735caec729b11eb18bab2a6f57625de10c14
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Fri Jul 23 09:24:42 2021 -0400

    tutorial: clarify why we generate custom Django app code as prerequisite to custom output view provider
---
 docs/tutorial/custom_ui_tutorial.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/docs/tutorial/custom_ui_tutorial.md b/docs/tutorial/custom_ui_tutorial.md
index 52e736c..64ef718 100644
--- a/docs/tutorial/custom_ui_tutorial.md
+++ b/docs/tutorial/custom_ui_tutorial.md
@@ -501,7 +501,9 @@ code. First we'll generate the custom Django app code.
 
 We have a local develop environment created. Now we can start adding custom
 code. First, we'll create a custom Django app, which is the standard way to
-package a Django extension.
+package a Django extension. We won't write any Django code until the next
+exercise, but generating the custom Django app code gives us a Python package we
+can install in which we can write the custom output view code.
 
 #### Create and activate a Python virtual environment